From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Wang Subject: [PATCH 0/3] raid, kmemleak, netfilter: replace list_for_each_continue_rcu with new interface Date: Fri, 17 Aug 2012 12:33:22 +0800 Message-ID: <502DC992.4040304@linux.vnet.ibm.com> References: <502CB91E.4050304@linux.vnet.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <502CB91E.4050304@linux.vnet.ibm.com> Sender: owner-linux-mm@kvack.org To: LKML , linux-raid@vger.kernel.org, linux-mm@kvack.org, "netdev@vger.kernel.org" , netfilter@vger.kernel.org, coreteam@netfilter.org, netfilter-devel@vger.kernel.org Cc: neilb@suse.de, catalin.marinas@arm.com, David Miller , kaber@trash.net, pablo@netfilter.org, "paulmck@linux.vnet.ibm.com" List-Id: linux-raid.ids From: Michael Wang This patch set will replace the list_for_each_continue_rcu with the new interface list_for_each_entry_continue_rcu, so we could remove the old one later. Changed: raid: in "next_active_rdev" kmemleak: in "kmemleak_seq_next" netfilter: in "nf_iterate" Tested: raid: mdadm command with an internal bitmap. kmemleak: enable kmemleak and check the info it captured. netfilter: add rule to iptables and check result by ping. nfqnl_test which is a test utility of libnetfilter_queue. All testing are using printk to make sure the code we want test was invoked. Signed-off-by: Michael Wang --- drivers/md/bitmap.c | 9 +++------ mm/kmemleak.c | 6 ++---- net/netfilter/core.c | 11 +++++++---- 3 files changed, 12 insertions(+), 14 deletions(-) -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752514Ab2HQEdj (ORCPT ); Fri, 17 Aug 2012 00:33:39 -0400 Received: from e23smtp05.au.ibm.com ([202.81.31.147]:47699 "EHLO e23smtp05.au.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751373Ab2HQEdf (ORCPT ); Fri, 17 Aug 2012 00:33:35 -0400 Message-ID: <502DC992.4040304@linux.vnet.ibm.com> Date: Fri, 17 Aug 2012 12:33:22 +0800 From: Michael Wang User-Agent: Mozilla/5.0 (X11; Linux i686; rv:14.0) Gecko/20120714 Thunderbird/14.0 MIME-Version: 1.0 To: LKML , linux-raid@vger.kernel.org, linux-mm@kvack.org, "netdev@vger.kernel.org" , netfilter@vger.kernel.org, coreteam@netfilter.org, netfilter-devel@vger.kernel.org CC: neilb@suse.de, catalin.marinas@arm.com, David Miller , kaber@trash.net, pablo@netfilter.org, "paulmck@linux.vnet.ibm.com" Subject: [PATCH 0/3] raid, kmemleak, netfilter: replace list_for_each_continue_rcu with new interface References: <502CB91E.4050304@linux.vnet.ibm.com> In-Reply-To: <502CB91E.4050304@linux.vnet.ibm.com> X-Forwarded-Message-Id: <502CB91E.4050304@linux.vnet.ibm.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit x-cbid: 12081704-1396-0000-0000-000001B98899 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Michael Wang This patch set will replace the list_for_each_continue_rcu with the new interface list_for_each_entry_continue_rcu, so we could remove the old one later. Changed: raid: in "next_active_rdev" kmemleak: in "kmemleak_seq_next" netfilter: in "nf_iterate" Tested: raid: mdadm command with an internal bitmap. kmemleak: enable kmemleak and check the info it captured. netfilter: add rule to iptables and check result by ping. nfqnl_test which is a test utility of libnetfilter_queue. All testing are using printk to make sure the code we want test was invoked. Signed-off-by: Michael Wang --- drivers/md/bitmap.c | 9 +++------ mm/kmemleak.c | 6 ++---- net/netfilter/core.c | 11 +++++++---- 3 files changed, 12 insertions(+), 14 deletions(-)