Re: [15/17] SLUB: Support virtual fallback via SLAB_VFALLBACK

2007-09-30 Thread Nick Piggin
On Sunday 30 September 2007 05:20, Andrew Morton wrote: On Sat, 29 Sep 2007 06:19:33 +1000 Nick Piggin [EMAIL PROTECTED] wrote: On Saturday 29 September 2007 19:27, Andrew Morton wrote: On Sat, 29 Sep 2007 11:14:02 +0200 Peter Zijlstra [EMAIL PROTECTED] wrote: oom-killings, or

Re: [15/17] SLUB: Support virtual fallback via SLAB_VFALLBACK

2007-09-30 Thread Andrew Morton
On Sun, 30 Sep 2007 05:09:28 +1000 Nick Piggin [EMAIL PROTECTED] wrote: On Sunday 30 September 2007 05:20, Andrew Morton wrote: On Sat, 29 Sep 2007 06:19:33 +1000 Nick Piggin [EMAIL PROTECTED] wrote: On Saturday 29 September 2007 19:27, Andrew Morton wrote: On Sat, 29 Sep 2007

Re: [15/17] SLUB: Support virtual fallback via SLAB_VFALLBACK

2007-09-30 Thread Nick Piggin
On Monday 01 October 2007 06:12, Andrew Morton wrote: On Sun, 30 Sep 2007 05:09:28 +1000 Nick Piggin [EMAIL PROTECTED] wrote: On Sunday 30 September 2007 05:20, Andrew Morton wrote: We can't run out of unfragmented memory for an order-2 GFP_KERNEL allocation in this workload. We go and

[RFC][PATCH 6/6] 9p: 9P server Kconfig and Makefile changes

2007-09-30 Thread Latchesar Ionkov
This patchset provides support for in-kernel 9P2000 servers. 9P server Kconfig and Makefile changes. Signed-off-by: Latchesar Ionkov [EMAIL PROTECTED] --- net/9p/Kconfig |1 + net/9p/Makefile |1 + net/9p/srv/Kconfig |9 + net/9p/srv/Makefile |7 +++ 4

[RFC][PATCH 4/6] 9p: 9P server fid management

2007-09-30 Thread Latchesar Ionkov
This patchset provides support for in-kernel 9P2000 servers. This patch adds the 9P server fid management. Signed-off-by: Latchesar Ionkov [EMAIL PROTECTED] --- net/9p/srv/fid.c | 178 ++ 1 files changed, 178 insertions(+), 0 deletions(-)

[RFC][REFERENCE ONLY] 9p: 9P ramfs sample implementation

2007-09-30 Thread Latchesar Ionkov
Sample ramfs file server that uses the 9P in-kernel server implementation. This code is for reference only, it is not supposed to be merged into the kernel. Signed-off-by: Latchesar Ionkov [EMAIL PROTECTED] --- net/9p/srv/Kconfig |6 + net/9p/srv/Makefile |4 + net/9p/srv/ramfs.c |

[RFC][PATCH 1/6] 9p: 9P server low-level 9P messages support

2007-09-30 Thread Latchesar Ionkov
This patchset provides support for in-kernel 9P2000 servers. Implement support for the 9P messages required by the server side. Signed-off-by: Latchesar Ionkov [EMAIL PROTECTED] --- include/net/9p/9p.h | 19 ++ net/9p/conv.c | 508 ++-

[RFC][PATCH 2/6] 9p: 9P server interface and common srv code

2007-09-30 Thread Latchesar Ionkov
This patchset provides support for in-kernel 9P2000 servers. This patch adds the header file that defines the 9P server interface as well as the code for the common support functions for the server. Signed-off-by: Latchesar Ionkov [EMAIL PROTECTED] --- include/net/9p/srv.h | 208

[RFC][PATCH 5/6] 9p: 9P server TCP socket connection support

2007-09-30 Thread Latchesar Ionkov
This patchset provides support for in-kernel 9P2000 servers. Support for 9P servers listening on TCP sockets. Signed-off-by: Latchesar Ionkov [EMAIL PROTECTED] --- net/9p/srv/socksrv.c | 252 ++ 1 files changed, 252 insertions(+), 0 deletions(-)

[RFC][PATCH 3/6] 9p: 9P server connection code

2007-09-30 Thread Latchesar Ionkov
This patchset provides support for in-kernel 9P2000 servers. This patch add the 9P server connection code. Signed-off-by: Latchesar Ionkov [EMAIL PROTECTED] --- net/9p/srv/conn.c | 743 + 1 files changed, 743 insertions(+), 0 deletions(-)

[GIT PULL -mm] 00/19 Unionfs updates/cleanups/fixes

2007-09-30 Thread Erez Zadok
The following is a series of patches related to Unionfs. The main changes here are compliance with coding style and assorted cleanups, based on lkml comments and advise. Specifically, the un/likely updates from the previous series of patches was completely redone; the number of un/likely

[PATCH 01/19] Unionfs: compile if debug is off

2007-09-30 Thread Erez Zadok
Signed-of-by: John Johansen [EMAIL PROTECTED] Signed-off-by: Erez Zadok [EMAIL PROTECTED] --- fs/unionfs/union.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/fs/unionfs/union.h b/fs/unionfs/union.h index 824bb67..7ce4771 100644 --- a/fs/unionfs/union.h +++

[PATCH 04/19] Unionfs: use consistent printk prefixes

2007-09-30 Thread Erez Zadok
Signed-off-by: Erez Zadok [EMAIL PROTECTED] --- fs/unionfs/inode.c |4 ++-- fs/unionfs/union.h |4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/unionfs/inode.c b/fs/unionfs/inode.c index 021e206..ba85a67 100644 --- a/fs/unionfs/inode.c +++ b/fs/unionfs/inode.c @@

[PATCH 03/19] Unionfs: minor comment cleanups

2007-09-30 Thread Erez Zadok
Signed-off-by: Erez Zadok [EMAIL PROTECTED] --- fs/unionfs/lookup.c |2 +- fs/unionfs/mmap.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/unionfs/lookup.c b/fs/unionfs/lookup.c index 94e4c8e..53668d6 100644 --- a/fs/unionfs/lookup.c +++ b/fs/unionfs/lookup.c

[PATCH 07/19] Unionfs: remove unnecessary if condition

2007-09-30 Thread Erez Zadok
The condition is always true there. Signed-off-by: Erez Zadok [EMAIL PROTECTED] --- fs/unionfs/dirfops.c | 10 -- 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/fs/unionfs/dirfops.c b/fs/unionfs/dirfops.c index 200fb55..da0fcdb 100644 --- a/fs/unionfs/dirfops.c +++

[PATCH 08/19] Unionfs: use page_offset() helper

2007-09-30 Thread Erez Zadok
Signed-off-by: Erez Zadok [EMAIL PROTECTED] --- fs/unionfs/mmap.c |7 +++ 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/fs/unionfs/mmap.c b/fs/unionfs/mmap.c index cf9545e..8928e99 100644 --- a/fs/unionfs/mmap.c +++ b/fs/unionfs/mmap.c @@ -179,8 +179,7 @@ static int

[PATCH 09/19] Unionfs: use pr_debug() instead of custom dprintk()

2007-09-30 Thread Erez Zadok
Also turn on DEBUG if CONFIG_UNION_FS_DEBUG is on Signed-off-by: Erez Zadok [EMAIL PROTECTED] --- fs/unionfs/Makefile |4 fs/unionfs/commonfops.c |4 ++-- fs/unionfs/dentry.c |6 +++--- fs/unionfs/lookup.c |2 +- fs/unionfs/union.h |6 +- 5 files

[PATCH 05/19] Unionfs: use UNIONFS_NAME macro

2007-09-30 Thread Erez Zadok
Signed-off-by: Erez Zadok [EMAIL PROTECTED] --- fs/unionfs/debug.c |2 +- fs/unionfs/main.c |4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/unionfs/debug.c b/fs/unionfs/debug.c index b103eb9..da82a47 100644 --- a/fs/unionfs/debug.c +++ b/fs/unionfs/debug.c @@