Found 14 matching messages (0.041 seconds). Page 1 of 1.
... the next entry to print. This patch remembers the next entry to ... .c | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) Index: linux- ... ->pos = *pos; + return ent; } @@ -186,19 +189,25 @@ static void *s_start( ...
linux-kernel - Steven Rostedt - Jan 9 2008 - 19:29
This patch adds hooks into the schedule switch tracing to allow other latency traces to hook into the ... /trace_sched_switch.c 2008-01-18 23:25:11.000000000 -0500 @@ -19,6 +19,7 @@ static DEFINE_PER_CPU(struct tracing_tra static int trace_enabled ...
linux-kernel - Steven Rostedt - Jan 21 2008 - 11:22
... u, arg = %lu\n", cmd, arg);
@@ -34,14 +36,19 @@ long ext2_ioctl(struct file *filp, unsig
case EXT2_IOC_SETFLAGS: {
... compat.h>
#include
linux-kernel - Dave Hansen - Feb 8 2008 - 18:27
... . I admit, it is a bit inconsistent. I can definitely break things out further in the next set, but I thought 27 patches was enough for now. ;) -- Dave - To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a ...
linux-fsdevel - Dave Hansen - Jun 8 2006 - 11:15
... users tend to have artifical in-kernel vfsmounts which
aren't really exposed to userspace and can't be remounted, but
this patch is included for completeness and so that the warnings
don't trip over these cases.
Signed-off-by: Dave Hansen linux-fsdevel - Dave Hansen - Jun 16 2006 - 19:12
This patch adds notrace annotations to timer functions
that will be used by tracing. This helps speed things up and
also keeps the ugliness of printing these functions down.
Signed-off-by: Steven Rostedt
linux-kernel - Steven Rostedt - Jan 15 2008 - 16:49
... - * trace_mark - Marker + * trace_mark - Marker using code patching * @name: marker name, not quoted. * @format: format ... marker. + * Places a marker using optimized code patching technique (imv_read()) + * to be enabled when immediate values are ...
linux-kernel - Mathieu Desnoyers - Apr 16 2008 - 17:34
Signed-off-by: Dave Hansen
linux-fsdevel - Dave Hansen - Jun 7 2006 - 20:10
On Wed, Jun 07, 2006 at 05:10:29PM -0700, Dave Hansen wrote:
this is the first non-trivial change to the
condition checks (regarding goto out_path_release)
why didn't you break that out too?
best,
Herbert
> Signed-off-by: Dave Hansen linux-fsdevel - Herbert Poetzl - Jun 8 2006 - 07:03
The svc_sock_enqueue function is now transport independent since all of the fields it touches have been moved to the transport independent svc_xprt structure. Change the function to use the svc_xprt structure directly instead of the transport
linux-nfs - Tom Tucker - Nov 29 2007 - 18:40
The svc_sock_enqueue function is now transport independent since all of the fields it touches have been moved to the transport independent svc_xprt structure. Change the function to use the svc_xprt structure directly instead of the transport
linux-nfs - Tom Tucker - Nov 29 2007 - 18:54
The svc_sock_enqueue function is now transport independent since all of the fields it touches have been moved to the transport independent svc_xprt structure. Change the function to use the svc_xprt structure directly instead of the transport
linux-nfs - Tom Tucker - Nov 29 2007 - 18:56
This is one of the most important parts of UBIFS. Since all updates are out-of-place, we need to do garbage collection from time to time, which is implemented in this file. The UBIFS GC does not do much - it just move clean data to the journal and
linux-kernel - Artem Bityutskiy - Mar 27 2008 - 10:55
On Thursday 27 March 2008, Artem Bityutskiy wrote: > + * Note, if the file-system is close to be full, this function may return > + * %-EAGAIN infinitely, so the caller has to limit amount of re-invocations of > + * the function. E.g., this happens if
linux-kernel - Arnd Bergmann - Mar 31 2008 - 22:11