login
Header Space

 
 

Mailing list archives

Search results

Found 100 matching messages (0.015 seconds). Page 1 of 5.

[PATCH 002/002] scripts/Makefile.modpost: New Kbuild variable EXTRA_SYMBOLS

... modules. When the previous patch 001/002 is applied to modpost. ... in this series (001/002) added a new command line argument ... of its symbol tables. This patch introduces a new make variable ... symbol tables. I hope this patch is useful and finds its ...

linux-kernel - Richard Hacker - Feb 28 2008 - 04:40

[Patch 002/002] rearrange patch for notifier of memory hotplug

Current memory notifier has some defects yet. (Fortunately, nothing uses it.) This patch is to fix and rearrange for them. - Add information of start_pfn, nr_pages, and node id if node status is changes from/to memoryless node for callback ...

linux-kernel - Yasunori Goto - Oct 11 2007 - 22:22

Re: [Patch 002/002] Create/delete kmem_cache_node for SLUB on memory online callback

... status changes from A) to B). I feel this is very useful to manage "halfway status" of node hotplug. (So, memory-less node patch is very helpful for me.) So, I would like to avoid using the word "node online" at here. But, if above definition is ...

linux-kernel - Yasunori Goto - Oct 12 2007 - 02:15

Re: [Patch 002/002] Create/delete kmem_cache_node for SLUB on memory online callback

... status changes > from A) to B). > > I feel this is very useful to manage "halfway status" of node > hotplug. (So, memory-less node patch is very helpful for me.) > > So, I would like to avoid using the word "node online" at here. > But, if above ...

linux-kernel - Christoph Lameter - Oct 12 2007 - 13:19

Re: [Patch 002/002] Create/delete kmem_cache_node for SLUB on memory online callback

... > > from A) to B). > > > > I feel this is very useful to manage "halfway status" of node > > hotplug. (So, memory-less node patch is very helpful for me.) > > > > So, I would like to avoid using the word "node online" at here. > > But, if above ...

linux-kernel - Yasunori Goto - Oct 13 2007 - 01:00

[Patch 002/002](memory hotplug) rearrange patch for notifier of memory hotplug

Current memory notifier has some defects yet. (Fortunately, nothing uses it.) This patch is to fix and rearrange for them. - Add information of start_pfn, nr_pages, and node id if node status is changes from/to memoryless node for callback ...

linux-kernel - Yasunori Goto - Oct 17 2007 - 23:23

Re: [Patch 002/002](memory hotplug) rearrange patch for notifier of memory hotplug

On Thu, 18 Oct 2007 12:23:34 +0900 Yasunori Goto wrote: > writeback_set_ratelimit(); > + > + if (onlined_pages) > + memory_notify(MEM_ONLINE, &arg); perhaps that open-coded writeback_set_ratelimit() should become a

linux-kernel - Andrew Morton - Oct 17 2007 - 23:41

[Patch 002/002] Create/delete kmem_cache_node for SLUB on memory online callback

This is to make kmem_cache_nodes of all SLUBs for new node when memory-hotadd is called. This fixes panic due to access NULL pointer at discard_slab() after memory hot-add. If pages on the new node available, slub can use it before making new

linux-kernel - Yasunori Goto - Oct 11 2007 - 22:29

Re: [Patch 002/002] Create/delete kmem_cache_node for SLUB on memory online callback

On Fri, 12 Oct 2007, Yasunori Goto wrote: =20 > If pages on the new node available, slub can use it before making > new kmem_cache_nodes. So, this callback should be called > BEFORE pages on the node are available. If its called before pages on the

linux-kernel - Christoph Lameter - Oct 12 2007 - 00:09

[PATCH 002 of 5] knfsd: Fix setting of ACL server versions.

Due to silly typos, if the nfs versions are explicitly set, no NFSACL versions get enabled. Also improve an error message that would have made this bug a little easier to find. Signed-off-by: Neil Brown ### Diffstat output .

linux-kernel - NeilBrown - Jan 22 2007 - 20:22

[PATCH 002 of 4] md: Make 'repair' actually work for raid1.

When 'repair' finds a block that is different one the various parts of the mirror. it is meant to write a chosen good version to the others. However it currently writes out the original data to each. The memcpy to make all the data the same is

linux-kernel - NeilBrown - Jan 22 2007 - 20:26

Re: [PATCH 002 of 4] md: Make 'repair' actually work for raid1.

On Tue, 23 Jan 2007 11:26:52 +1100 NeilBrown wrote: > + for (j = 0; j < vcnt ; j++) > + memcpy(page_address(sbio->bi_io_vec[j].bv_page), > + page_address(pbio->bi_io_vec[j].bv_page), > + PAGE_SIZE)

linux-kernel - Andrew Morton - Jan 24 2007 - 02:57

Re: [PATCH 002 of 4] md: Make 'repair' actually work for raid1.

On Tuesday January 23, akpm@osdl.org wrote: > On Tue, 23 Jan 2007 11:26:52 +1100 > NeilBrown wrote: > > > + for (j = 0; j < vcnt ; j++) > > + memcpy(page_address(sbio->bi_io_vec[j].bv_page), > > + page_address(

linux-kernel - Neil Brown - Jan 24 2007 - 03:27

[PATCH 002 of 14] knfsd: SUNRPC: allow creating an RPC service without registering with portmapper

From: Chuck Lever Sometimes we need to create an RPC service but not register it with the local portmapper. NFSv4 delegation callback, for example. Change the svc_makesock() API to allow optionally creating temporary or

linux-kernel - NeilBrown - Feb 2 2007 - 00:39

[PATCH 002 of 4] knfsd: Tidy up choice of filesystem-identifier when creating a filehandle.

If we are using the same version/fsid as a current filehandle, then there is no need to verify the the numbers are valid for this export, and they must be (we used them to find this export). This allows us to simplify the fsid selection code.

linux-kernel - NeilBrown - Feb 12 2007 - 01:49

[PATCH 002 of 9] knfsd: nfsd4: relax checking of ACL inheritance bits

From: J. Bruce Fields The rfc allows us to be more permissive about the ACL inheritance bits we accept: "If the server supports a single "inherit ACE" flag that applies to both files and directories, the server may

linux-kernel - NeilBrown - Feb 12 2007 - 19:44

[PATCH 002 of 6] md: RAID6: clean up CPUID and FPU enter/exit code

From: "H. Peter Anvin" - Use kernel_fpu_begin() and kernel_fpu_end() - Use boot_cpu_has() for feature testing even in userspace Signed-off-by: H. Peter Anvin Signed-off-by: Neil Brown ###

linux-kernel - NeilBrown - Feb 20 2007 - 02:34

[PATCH 002 of 3] knfsd: Avoid checksum checks when collecting metadata for a UDP packet.

When recv_msg is called with a size of 0 and MSG_PEEK (and sunrpc/svcsock.c does), it is clear that we only interested in metadata (from/to addresses) and not the data, so don't do any checksum checking at this point. Leave that until the data is

linux-kernel - NeilBrown - Mar 2 2007 - 00:28

[PATCH 002 of 4] knfsd: Remove CONFIG_IPV6 ifdefs from sunrpc server code.

They don't really save that much, and aren't worth the hassle. Signed-off-by: Neil Brown ### Diffstat output ./include/linux/sunrpc/svc.h | 2 -- ./net/sunrpc/svcsock.c | 13 +++---------- 2 files changed, 3

linux-kernel - NeilBrown - Mar 5 2007 - 22:15

[patch 002/101] x86_64: fix 2.6.18 regression - PTRACE_OLDSETOPTIONS should be accepted

Also PTRACE_OLDSETOPTIONS should be accepted, as done by kernel/ptrace.c and forced by binary compatibility. UML/32bit breaks because of this - since it is wise enough to use PTRACE_OLDSETOPTIONS to be binary compatible with 2.4 host kernels.

linux-kernel - Greg KH - Mar 7 2007 - 13:10

speck-geostationary