From patchwork Fri Jul 24 10:12:20 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Herbert Xu X-Patchwork-Id: 1335571 Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=gondor.apana.org.au Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4BClPV0FHcz9sRK for ; Fri, 24 Jul 2020 20:12:30 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726969AbgGXKM0 (ORCPT ); Fri, 24 Jul 2020 06:12:26 -0400 Received: from helcar.hmeau.com ([216.24.177.18]:38930 "EHLO fornost.hmeau.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726114AbgGXKM0 (ORCPT ); Fri, 24 Jul 2020 06:12:26 -0400 Received: from gwarestrin.arnor.me.apana.org.au ([192.168.0.7]) by fornost.hmeau.com with smtp (Exim 4.92 #5 (Debian)) id 1jyuge-0000qn-9g; Fri, 24 Jul 2020 20:12:21 +1000 Received: by gwarestrin.arnor.me.apana.org.au (sSMTP sendmail emulation); Fri, 24 Jul 2020 20:12:20 +1000 Date: Fri, 24 Jul 2020 20:12:20 +1000 From: Herbert Xu To: Eric Dumazet , "Gong, Sishuai" , "tgraf@suug.ch" , "netdev@vger.kernel.org" , "Sousa da Fonseca, Pedro Jose" Subject: [v2 PATCH 0/2] rhashtable: Fix unprotected RCU dereference in __rht_ptr Message-ID: <20200724101220.GA15913@gondor.apana.org.au> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org v2 Added another missing __rcu marker causing warnings. --- This patch series fixes an unprotected dereference in __rht_ptr. The first patch is a minimal fix that does not use the correct RCU markings but is suitable for backport, and the second patch cleans up the RCU markings. Thanks,