From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f194.google.com (mail-wr0-f194.google.com [209.85.128.194]) by dpdk.org (Postfix) with ESMTP id D6CE52C37 for ; Tue, 1 May 2018 12:47:08 +0200 (CEST) Received: by mail-wr0-f194.google.com with SMTP id p5-v6so10468501wre.12 for ; Tue, 01 May 2018 03:47:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=x7ogo4/FWhXg2/AUGfOQDlzwfMUBerVepJRVMs1pqWg=; b=kORvoNy6zLtxI2ahXIXpTm0CyxRfZko5P0xT3ahZG+VkQCIeOkUFYx1FBn1ws1En9+ XS8Xk4p55Fllu0heR1h7z7V7JjW++6RA512uwbbbX6dfMV9LAqv93IxWrW7btGJBeQCH eZ1fhKstY/sFgynV79J4cOWm2Gkd2VhkUebgAVqc80DFUnMWhGIDn1J1gBoz8/qkuLt5 0pzys+pHuYpPO+2YqfmHZVxBnUcnq1Er7yW9vuQPg6NMAHRYoTs6EQKXlYm5ZmNyY6dX aFNwJLjltlYuELmcL5gsFQyEP4DMnC5Z4wKIzlzunwjQZPzAXr+AqnEyuwOOGj/jBvON HgGQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=x7ogo4/FWhXg2/AUGfOQDlzwfMUBerVepJRVMs1pqWg=; b=GWMdthpEQ/joPQGLSL+TW6wnpfAF8WYfjVX4T3pt56Ef5lZK138Wei/z6IX0jG8D+r xLsx/b+tNCVkYtTKNz/DaScD5n/NJEulaWxuRwj8Fx6cMm2BF0oR97BrJ55yozY3LDzq h+cuOgGBw7rnhYJl1CD6FNA47npU3E3+FkJWzBuPFsTSvODz1OmR2ZlKuyBMxU+Q3O1M 9RhIKEcrah6NdslIHVAtmVoIHvw6SV2bkRKcYIP0dm4SYmywRf6UXUhU5JXdHMzZ04N+ qc/Zh4y+q+JTTxAP6WKd+JE2UozugEUntIcuLkar0yYZTDL3NeHgV8rA28X2isVbRvcs phxA== X-Gm-Message-State: ALQs6tBykUaR/UPeMcxdGlORrJiyyhbpD2/XQAxTJl2AEw7z63PvEKVG lvZzBTH0DehP/QdmaYiOQ5E= X-Google-Smtp-Source: AB8JxZoFKWDBQ2IvLVRvWh0ptrvW6+II8gvX9g+VwaqfkPGfpKWvDyLCXr2/nFcZpSMwLhcwoiuKhw== X-Received: by 2002:adf:87d4:: with SMTP id c20-v6mr11318662wrc.197.1525171628570; Tue, 01 May 2018 03:47:08 -0700 (PDT) Received: from localhost (slip139-92-244-193.lon.uk.prserv.net. [139.92.244.193]) by smtp.gmail.com with ESMTPSA id o12-v6sm9167180wrf.31.2018.05.01.03.47.07 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 01 May 2018 03:47:07 -0700 (PDT) From: luca.boccassi@gmail.com To: Shreyansh Jain Cc: Pablo de Lara , dpdk stable Date: Tue, 1 May 2018 11:44:45 +0100 Message-Id: <20180501104509.17238-22-luca.boccassi@gmail.com> X-Mailer: git-send-email 2.14.2 In-Reply-To: <20180501104509.17238-1-luca.boccassi@gmail.com> References: <20180501104509.17238-1-luca.boccassi@gmail.com> Subject: [dpdk-stable] patch 'hash: fix comment for lookup' has been queued to LTS release 16.11.7 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 May 2018 10:47:09 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.7 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 05/03/18. So please shout if anyone has objections. Thanks. Luca Boccassi --- >>From 1cd34f76816a335f7759c4c1ef4ad4745c1a466e Mon Sep 17 00:00:00 2001 From: Shreyansh Jain Date: Thu, 12 Apr 2018 18:03:58 +0530 Subject: [PATCH] hash: fix comment for lookup [ upstream commit 0da959d484c852ed80a9e83ece3ff916aa7d3b75 ] rte_hash_lookup_with_hash() has wrong comment for its 'sig' param. Fixes: 1a9f648be291 ("hash: fix for multi-process apps") Signed-off-by: Shreyansh Jain Acked-by: Pablo de Lara --- lib/librte_hash/rte_hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_hash/rte_hash.h b/lib/librte_hash/rte_hash.h index 622c18009..f29de81ae 100644 --- a/lib/librte_hash/rte_hash.h +++ b/lib/librte_hash/rte_hash.h @@ -357,7 +357,7 @@ rte_hash_lookup(const struct rte_hash *h, const void *key); * @param key * Key to find. * @param sig - * Hash value to remove from the hash table. + * Precomputed hash value for 'key'. * @return * - -EINVAL if the parameters are invalid. * - -ENOENT if the key is not found. -- 2.14.2