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 <files...>'; 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@xxxxxxxx*/CC: Christoph Lameter <cl@xxxxxxxxxxxxxxxxxxxx>/' \ | sed 's/.*hugh@xxxxxxxxxxxx*/CC: Hugh Dickins <hugh.dickins@xxxxxxxxxxxxx>/' \ | sed 's/.*npiggin@xxxxxxxx*/CC: Nick Piggin <npiggin@xxxxxxxxx>/' \ | sed 's/.*nickpiggin@xxxxxxxxxxxxx*/CC: Nick Piggin <npiggin@xxxxxxxxx>/' \ | sed 's/.*jens.axboe@xxxxxxxxxxx*/CC: Jens Axboe <axboe@xxxxxxxxx>/' \ | sed 's/.*dgc@xxxxxxxx*/CC: Dave Chinner <david@xxxxxxxxxxxxx>/' The output looks like wfg@bee ~/cc/linux-2.6% git-authors-email mm/memory_hotplug.c 3 Keith Mannthey <kmannth@xxxxxxxxxx> 3 Minchan Kim <minchan.kim@xxxxxxxxx> 4 Dave Hansen <haveblue@xxxxxxxxxx> 14 KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> 14 Yasunori Goto <y-goto@xxxxxxxxxxxxxx> CC: Keith Mannthey <kmannth@xxxxxxxxxx> CC: Minchan Kim <minchan.kim@xxxxxxxxx> CC: Dave Hansen <haveblue@xxxxxxxxxx> CC: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> CC: Yasunori Goto <y-goto@xxxxxxxxxxxxxx> Thanks, Fengguang -- To unsubscribe from this list: send the line "unsubscribe linux-hotplug" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html