From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wu Fengguang Date: Sat, 13 Nov 2010 23:43:43 +0000 Subject: Re: [v2, 0/8] NUMA Hotplug emulator Message-Id: <20101113234343.GA8975@localhost> List-Id: References: <20101113053714.GA32501@shaohui> In-Reply-To: <20101113053714.GA32501@shaohui> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-hotplug@vger.kernel.org On Sat, Nov 13, 2010 at 10:42:52PM +0800, Greg KH wrote: > On Sat, Nov 13, 2010 at 01:37:14PM +0800, Shaohui Zheng wrote: > > Hi, All > > > > This patchset introduces NUMA hotplug emulator for x86. we already sent out > > an early version in LKML (http ://lwn.net/Articles/387571/). This is 4th version > > in internal, and 2nd time to sent to LKML. > > Please send this to lkml, the linux-hotplug mailing list is primarily > for userspace hotplug tools (like udev) and not for kernel stuff like > this where you want the core kernel developers to review your patches. And try the git/quilt tools when resending the emails to LKML. > Please use the script, scripts/get_maintainer.pl to determine who best > to send your patches to, it will tell you the mailing list as well as > the people involved. I run a handy script (based on your git-authors) to help me create the CC list for given source files: [ $# -lt "1" ] && { echo 'usage: git authors '; exit -1; } git log $@ | grep Author: | cut -d: -f2 | sort | uniq -c | sort -n | tail -5 echo git log $@ | grep Author: | cut -d: -f2 | sort | uniq -c | sort -n | tail -5 \ | sed 's/ *[0-9]\+ /CC:/' \ | sed 's/.*clameter@sgi.com.*/CC: Christoph Lameter /' \ | sed 's/.*hugh@veritas.com.*/CC: Hugh Dickins /' \ | sed 's/.*npiggin@suse.de.*/CC: Nick Piggin /' \ | sed 's/.*nickpiggin@yahoo.com.au.*/CC: Nick Piggin /' \ | sed 's/.*jens.axboe@oracle.com.*/CC: Jens Axboe /' \ | sed 's/.*dgc@sgi.com.*/CC: Dave Chinner /' The output looks like wfg@bee ~/cc/linux-2.6% git-authors-email mm/memory_hotplug.c 3 Keith Mannthey 3 Minchan Kim 4 Dave Hansen 14 KAMEZAWA Hiroyuki 14 Yasunori Goto CC: Keith Mannthey CC: Minchan Kim CC: Dave Hansen CC: KAMEZAWA Hiroyuki CC: Yasunori Goto Thanks, Fengguang