login
Header Space

 
 

Mailing list archives

Search results

Found 24 matching messages (0.022 seconds). Page 1 of 2.

[RFC PATCH] 20-rc6-mm3: kernel/params.c: compile fail when CONFIG_SYSFS not set

Hi there, This patch is a guess at what's missing, to fix a compile ... 4 ++++ 1 files changed, 4 insertions(+) --- linux-2.6.20-rc6-mm3/kernel/params.c 2007-01-30 16:25:34.000000000 +1100 +++ linux-2.6.20-rc6-mm3c/kernel/params.c 2007-02-01 07:25:09. ...

linux-kernel - Grant Coady - Jan 31 2007 - 16:47

[RFC][PATCH 20/20] honor r/w changes at do_remount() time

Originally from: Herbert Poetzl This is the core of the read-only bind mount patch set. Note that this does _not_ add a "ro" option directly to the bind mount operation. If you require such a mount, you must first do the ...

linux-fsdevel - Dave Hansen - Jun 16 2006 - 19:12

Re: [RFC][PATCH 20/20] honor r/w changes at do_remount() time

... wrote: > > Originally from: Herbert Poetzl > > This is the core of the read-only bind mount patch set. > > Note that this does _not_ add a "ro" option directly to > the bind mount operation. If you require such a mount, ...

linux-fsdevel - Al Viro - Jun 18 2006 - 14:36

Re: [RFC][PATCH 20/20] honor r/w changes at do_remount() time

... > > Originally from: Herbert Poetzl > > > > This is the core of the read-only bind mount patch set. > > > > Note that this does _not_ add a "ro" option directly to > > the bind mount operation. If you require such a mount, ...

linux-fsdevel - Dave Hansen - Jun 19 2006 - 12:45

Re: [RFC PATCH] 20-rc6-mm3: kernel/params.c: compile fail when CONFIG_SYSFS not set

... at 07:47:33AM +1100, Grant Coady wrote: > Hi there, > > This patch is a guess at what's missing, to fix a compile failure ... > Compile tested. This looks correct, I'll add it to my patch queue, thanks. greg k-h - To unsubscribe from this list: ...

linux-kernel - Greg KH - Jan 31 2007 - 17:16

[RFC][PATCH 20/27] unix_find_other() elevate write count for touch_atime()

Signed-off-by: Dave Hansen --- lxc-dave/net/unix/af_unix.c | 16 ++++++++++++---- 1 files changed, 12 insertions(+), 4 deletions(-) diff -puN net/unix/af_unix.c~elevate-writers-opens-part4 net/unix/af_unix.c --- lxc/

linux-fsdevel - Dave Hansen - Jun 7 2006 - 20:10

Re: [RFC][PATCH 20/27] unix_find_other() elevate write count for touch_atime()

On Wed, Jun 07, 2006 at 05:10:30PM -0700, Dave Hansen wrote: > > > Signed-off-by: Dave Hansen > --- > > lxc-dave/net/unix/af_unix.c | 16 ++++++++++++---- > 1 files changed, 12 insertions(+), 4 deletions(-) > > diff -

linux-fsdevel - Herbert Poetzl - Jun 8 2006 - 07:07

[RFC,PATCH 20/38] svc: Make svc_send transport neutral

Move the sk_mutex field to the transport independent svc_xprt structure. Now all the fields that svc_send touches are transport neutral. Change the svc_send function to use the transport independent svc_xprt directly instead of the transport

linux-nfs - Tom Tucker - Nov 29 2007 - 18:40

[RFC,PATCH 20/38] svc: Make svc_send transport neutral

Move the sk_mutex field to the transport independent svc_xprt structure. Now all the fields that svc_send touches are transport neutral. Change the svc_send function to use the transport independent svc_xprt directly instead of the transport

linux-nfs - Tom Tucker - Nov 29 2007 - 18:54

[RFC,PATCH 20/38] svc: Make svc_send transport neutral

Move the sk_mutex field to the transport independent svc_xprt structure. Now all the fields that svc_send touches are transport neutral. Change the svc_send function to use the transport independent svc_xprt directly instead of the transport

linux-nfs - Tom Tucker - Nov 29 2007 - 18:56

Re: [RFC PATCH 20/22 -v2] Add latency_trace format tor tracer

On Wed, 2008-01-09 at 18:29 -0500, Steven Rostedt wrote: > +enum trace_flag_type { > + TRACE_FLAG_IRQS_OFF = 0x01, > + TRACE_FLAG_NEED_RESCHED = 0x02, > + TRACE_FLAG_NEED_RESCHED_DELAYED = 0x04, > +

linux-kernel - Daniel Walker - Jan 9 2008 - 23:41

[RFC PATCH 20/30 v3] Add timestamps to tracer

Add timestamps to trace entries. Signed-off-by: Steven Rostedt --- lib/tracing/tracer.c | 16 ++++++++++++++++ lib/tracing/tracer.h | 1 + 2 files changed, 17 insertions(+) Index: linux-compile.git/lib/tracing/tracer.

linux-kernel - Steven Rostedt - Jan 15 2008 - 16:49

[RFC PATCH 20/23 -v4] Add marker in try_to_wake_up

I looked at what Mathieu Desnoyers did in his LTTng patches to use as a marker for the wakeup latency timings. But unfortunately, his marker didn't give me enough information. What I need is the task pointer itself. I also look at its priority but I ...

linux-kernel - Steven Rostedt - Jan 21 2008 - 11:22

[RFC][PATCH 20/30] r/o bind mounts: elevate write count for open()s

This is the first really tricky patch in the series. It elevates the writer count on a mount each time a non-special file is opened for write. We used to do this in may_open(), but Miklos pointed out that __dentry_open() is used as well to create ...

linux-kernel - Dave Hansen - Feb 8 2008 - 18:27

[RFC PATCH 20/26] UBIFS: add VFS operations

This patch adds implementation of most of the VFS callbacks like ->readdir(), ->write_begin(), and so on. In most cases, it just does budgeting and calls corresponding journal function, because all new data goes first to the journal. Signed-off-by: ...

linux-kernel - Artem Bityutskiy - Mar 27 2008 - 10:55

Re: [RFC PATCH 20/26] UBIFS: add VFS operations

Artem Bityutskiy writes: (haven't read the whole thing) > + inode->i_gid = current->fsgid; > + inode->i_mode = mode; > + inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME_SEC; Any specific reason you

linux-kernel - Andi Kleen - Mar 27 2008 - 09:36

Re: [RFC PATCH 20/26] UBIFS: add VFS operations

Andi Kleen wrote: >> + inode->i_gid = current->fsgid; >> + inode->i_mode = mode; >> + inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME_SEC; > > Any specific reason you didn't implement sub second time stamp support? > There is

linux-kernel - Artem Bityutskiy - Mar 27 2008 - 09:42

Re: [RFC PATCH 20/26] UBIFS: add VFS operations

Hi Artem, On Thu, Mar 27, 2008 at 5:55 PM, Artem Bityutskiy wrote: > +static int ubifs_set_page_dirty(struct page *page) > +{ > + /* > + * An attempt to dirty a page without budgeting for it - should

linux-kernel - Pekka Enberg - Apr 1 2008 - 08:08

Re: [RFC PATCH 20/26] UBIFS: add VFS operations

Pekka Enberg wrote: > Hi Artem, > > On Thu, Mar 27, 2008 at 5:55 PM, Artem Bityutskiy > wrote: >> +static int ubifs_set_page_dirty(struct page *page) >> +{ >> + /* >> + * An attempt to dirty a page

linux-kernel - Artem Bityutskiy - Apr 1 2008 - 08:42

speck-geostationary