* [PATCH] net: add tracepoints to socket api @ 2009-01-26 19:59 Neil Horman 2009-01-27 1:22 ` David Miller 2009-01-27 17:18 ` Christoph Hellwig 0 siblings, 2 replies; 15+ messages in thread From: Neil Horman @ 2009-01-26 19:59 UTC (permalink / raw) To: netdev; +Cc: davem, nhorman Hey all- I've been working for a bit with the various tracepoints that have been developed in the lttng tree. The infrastructure is available in the main line kernel. All thats missing are the tracepoints themselves. While some seem to be contentious for various reasons, most seem benign, and can be rather usefull, so I was thinking we could start importing Some for the net stack. Heres a patch for the top level socket api tracepoints. If these are acceptable, I'll begin porting over the rest for the remainder of the network stack. This patch applies cleanly against the net-next tree. Regards Neil Signed-off-by: Neil Horman <nhorman@tuxdriver.com> socket.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/net/socket.c b/net/socket.c index 35dd737..6cf37f8 100644 --- a/net/socket.c +++ b/net/socket.c @@ -95,6 +95,7 @@ #include <net/sock.h> #include <linux/netfilter.h> +#include <trace/socket.h> static int sock_no_open(struct inode *irrelevant, struct file *dontcare); static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov, @@ -155,6 +156,11 @@ static const struct net_proto_family *net_families[NPROTO] __read_mostly; static DEFINE_PER_CPU(int, sockets_in_use) = 0; +DEFINE_TRACE(socket_sendmsg); +DEFINE_TRACE(socket_recvmsg); +DEFINE_TRACE(socket_create); +DEFINE_TRACE(socket_call); + /* * Support routines. * Move socket addresses back and forth across the kernel/user @@ -574,6 +580,7 @@ int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size) ret = __sock_sendmsg(&iocb, sock, msg, size); if (-EIOCBQUEUED == ret) ret = wait_on_sync_kiocb(&iocb); + trace_socket_sendmsg(sock, msg, size, ret); return ret; } @@ -653,10 +660,12 @@ int sock_recvmsg(struct socket *sock, struct msghdr *msg, int ret; init_sync_kiocb(&iocb, NULL); + iocb.private = &siocb; ret = __sock_recvmsg(&iocb, sock, msg, size, flags); if (-EIOCBQUEUED == ret) ret = wait_on_sync_kiocb(&iocb); + trace_socket_recvmsg(sock, msg, size, flags, ret); return ret; } @@ -1242,6 +1251,7 @@ SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol) if (retval < 0) goto out_release; + trace_socket_create(sock, retval); out: /* It may be already another descriptor 8) Not kernel problem. */ return retval; @@ -2064,6 +2074,8 @@ SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args) a0 = a[0]; a1 = a[1]; + trace_socket_call(call, a0); + switch (call) { case SYS_SOCKET: err = sys_socket(a0, a1, a[2]); ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-26 19:59 [PATCH] net: add tracepoints to socket api Neil Horman @ 2009-01-27 1:22 ` David Miller 2009-01-27 1:31 ` Arnaldo Carvalho de Melo 2009-01-27 17:18 ` Christoph Hellwig 1 sibling, 1 reply; 15+ messages in thread From: David Miller @ 2009-01-27 1:22 UTC (permalink / raw) To: nhorman; +Cc: netdev From: Neil Horman <nhorman@tuxdriver.com> Date: Mon, 26 Jan 2009 14:59:30 -0500 > @@ -95,6 +95,7 @@ > > #include <net/sock.h> > #include <linux/netfilter.h> > +#include <trace/socket.h> Where is this mysterious include/trace/socket.h file? I can't seem to find it :-) ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-27 1:22 ` David Miller @ 2009-01-27 1:31 ` Arnaldo Carvalho de Melo 2009-01-27 5:57 ` David Miller 0 siblings, 1 reply; 15+ messages in thread From: Arnaldo Carvalho de Melo @ 2009-01-27 1:31 UTC (permalink / raw) To: David Miller; +Cc: nhorman, netdev Em Mon, Jan 26, 2009 at 05:22:53PM -0800, David Miller escreveu: > From: Neil Horman <nhorman@tuxdriver.com> > Date: Mon, 26 Jan 2009 14:59:30 -0500 > > > @@ -95,6 +95,7 @@ > > > > #include <net/sock.h> > > #include <linux/netfilter.h> > > +#include <trace/socket.h> > > Where is this mysterious include/trace/socket.h file? > I can't seem to find it :-) Its something along the lines of include/trace/block.h, with the DECLARE_TRACE that match the DEFINE_TRACE entries he added, probably he forgot to git-add this new file :-) - Arnaldo ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-27 1:31 ` Arnaldo Carvalho de Melo @ 2009-01-27 5:57 ` David Miller 2009-01-27 12:09 ` Neil Horman 2009-01-27 14:07 ` Neil Horman 0 siblings, 2 replies; 15+ messages in thread From: David Miller @ 2009-01-27 5:57 UTC (permalink / raw) To: acme; +Cc: nhorman, netdev From: Arnaldo Carvalho de Melo <acme@redhat.com> Date: Mon, 26 Jan 2009 23:31:27 -0200 > Em Mon, Jan 26, 2009 at 05:22:53PM -0800, David Miller escreveu: > > From: Neil Horman <nhorman@tuxdriver.com> > > Date: Mon, 26 Jan 2009 14:59:30 -0500 > > > > > @@ -95,6 +95,7 @@ > > > > > > #include <net/sock.h> > > > #include <linux/netfilter.h> > > > +#include <trace/socket.h> > > > > Where is this mysterious include/trace/socket.h file? > > I can't seem to find it :-) > > Its something along the lines of include/trace/block.h, with the > DECLARE_TRACE that match the DEFINE_TRACE entries he added, probably he > forgot to git-add this new file :-) I kind of figured as much, so now Neil just needs to respin his patch with the relevant bits of that header file included. ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-27 5:57 ` David Miller @ 2009-01-27 12:09 ` Neil Horman 2009-01-27 14:07 ` Neil Horman 1 sibling, 0 replies; 15+ messages in thread From: Neil Horman @ 2009-01-27 12:09 UTC (permalink / raw) To: David Miller; +Cc: acme, netdev On Mon, Jan 26, 2009 at 09:57:03PM -0800, David Miller wrote: > From: Arnaldo Carvalho de Melo <acme@redhat.com> > Date: Mon, 26 Jan 2009 23:31:27 -0200 > > > Em Mon, Jan 26, 2009 at 05:22:53PM -0800, David Miller escreveu: > > > From: Neil Horman <nhorman@tuxdriver.com> > > > Date: Mon, 26 Jan 2009 14:59:30 -0500 > > > > > > > @@ -95,6 +95,7 @@ > > > > > > > > #include <net/sock.h> > > > > #include <linux/netfilter.h> > > > > +#include <trace/socket.h> > > > > > > Where is this mysterious include/trace/socket.h file? > > > I can't seem to find it :-) > > > > Its something along the lines of include/trace/block.h, with the > > DECLARE_TRACE that match the DEFINE_TRACE entries he added, probably he > > forgot to git-add this new file :-) > > I kind of figured as much, so now Neil just needs to respin his > patch with the relevant bits of that header file included. > Grr, knew something like this would happen. Its apparently impossible for me to send something up without missing something obvious :). My bad. I'll respin/repost in just a bit Neil ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-27 5:57 ` David Miller 2009-01-27 12:09 ` Neil Horman @ 2009-01-27 14:07 ` Neil Horman 1 sibling, 0 replies; 15+ messages in thread From: Neil Horman @ 2009-01-27 14:07 UTC (permalink / raw) To: David Miller; +Cc: acme, netdev On Mon, Jan 26, 2009 at 09:57:03PM -0800, David Miller wrote: > From: Arnaldo Carvalho de Melo <acme@redhat.com> > Date: Mon, 26 Jan 2009 23:31:27 -0200 > > > Em Mon, Jan 26, 2009 at 05:22:53PM -0800, David Miller escreveu: > > > From: Neil Horman <nhorman@tuxdriver.com> > > > Date: Mon, 26 Jan 2009 14:59:30 -0500 > > > > > > > @@ -95,6 +95,7 @@ > > > > > > > > #include <net/sock.h> > > > > #include <linux/netfilter.h> > > > > +#include <trace/socket.h> > > > > > > Where is this mysterious include/trace/socket.h file? > > > I can't seem to find it :-) > > > > Its something along the lines of include/trace/block.h, with the > > DECLARE_TRACE that match the DEFINE_TRACE entries he added, probably he > > forgot to git-add this new file :-) > > I kind of figured as much, so now Neil just needs to respin his > patch with the relevant bits of that header file included. > Here we go, same patch as before, just adding our missing wayward header file. Sorry for the noise. I've been working for a bit with the various tracepoints that have been developed in the lttng tree. The infrastructure is available in the main line kernel. All thats missing are the tracepoints themselves. While some seem to be contentious for various reasons, most seem benign, and can be rather usefull, so I was thinking we could start importing Some for the net stack. Heres a patch for the top level socket api tracepoints. If these are acceptable, I'll begin porting over the rest for the remainder of the network stack. This patch applies cleanly against the net-next tree. Signed-off-by: Neil Horman <nhorman@tuxdriver.com> include/trace/socket.h | 26 ++++++++++++++++++++++++++ net/socket.c | 12 ++++++++++++ 2 files changed, 38 insertions(+) diff --git a/include/trace/socket.h b/include/trace/socket.h new file mode 100644 index 0000000..60f216c --- /dev/null +++ b/include/trace/socket.h @@ -0,0 +1,26 @@ +#ifndef _TRACE_SOCKET_H +#define _TRACE_SOCKET_H + +#include <net/sock.h> +#include <linux/tracepoint.h> + +DECLARE_TRACE(socket_sendmsg, + TPPROTO(struct socket *sock, struct msghdr *msg, size_t size, int ret), + TPARGS(sock, msg, size, ret)); +DECLARE_TRACE(socket_recvmsg, + TPPROTO(struct socket *sock, struct msghdr *msg, size_t size, int flags, + int ret), + TPARGS(sock, msg, size, flags, ret)); +DECLARE_TRACE(socket_create, + TPPROTO(struct socket *sock, int fd), + TPARGS(sock, fd)); +/* + * socket_call + * + * TODO : This tracepoint should be expanded to cover each element of the + * switch in sys_socketcall(). + */ +DECLARE_TRACE(socket_call, + TPPROTO(int call, unsigned long a0), + TPARGS(call, a0)); +#endif diff --git a/net/socket.c b/net/socket.c index 35dd737..6cf37f8 100644 --- a/net/socket.c +++ b/net/socket.c @@ -95,6 +95,7 @@ #include <net/sock.h> #include <linux/netfilter.h> +#include <trace/socket.h> static int sock_no_open(struct inode *irrelevant, struct file *dontcare); static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov, @@ -155,6 +156,11 @@ static const struct net_proto_family *net_families[NPROTO] __read_mostly; static DEFINE_PER_CPU(int, sockets_in_use) = 0; +DEFINE_TRACE(socket_sendmsg); +DEFINE_TRACE(socket_recvmsg); +DEFINE_TRACE(socket_create); +DEFINE_TRACE(socket_call); + /* * Support routines. * Move socket addresses back and forth across the kernel/user @@ -574,6 +580,7 @@ int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size) ret = __sock_sendmsg(&iocb, sock, msg, size); if (-EIOCBQUEUED == ret) ret = wait_on_sync_kiocb(&iocb); + trace_socket_sendmsg(sock, msg, size, ret); return ret; } @@ -653,10 +660,12 @@ int sock_recvmsg(struct socket *sock, struct msghdr *msg, int ret; init_sync_kiocb(&iocb, NULL); + iocb.private = &siocb; ret = __sock_recvmsg(&iocb, sock, msg, size, flags); if (-EIOCBQUEUED == ret) ret = wait_on_sync_kiocb(&iocb); + trace_socket_recvmsg(sock, msg, size, flags, ret); return ret; } @@ -1242,6 +1251,7 @@ SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol) if (retval < 0) goto out_release; + trace_socket_create(sock, retval); out: /* It may be already another descriptor 8) Not kernel problem. */ return retval; @@ -2064,6 +2074,8 @@ SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args) a0 = a[0]; a1 = a[1]; + trace_socket_call(call, a0); + switch (call) { case SYS_SOCKET: err = sys_socket(a0, a1, a[2]); ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-26 19:59 [PATCH] net: add tracepoints to socket api Neil Horman 2009-01-27 1:22 ` David Miller @ 2009-01-27 17:18 ` Christoph Hellwig 2009-01-27 17:20 ` David Miller 1 sibling, 1 reply; 15+ messages in thread From: Christoph Hellwig @ 2009-01-27 17:18 UTC (permalink / raw) To: Neil Horman; +Cc: netdev, davem On Mon, Jan 26, 2009 at 02:59:30PM -0500, Neil Horman wrote: > Hey all- > I've been working for a bit with the various tracepoints that have been > developed in the lttng tree. The infrastructure is available in the main line > kernel. All thats missing are the tracepoints themselves. While some seem to > be contentious for various reasons, most seem benign, and can be rather usefull, > so I was thinking we could start importing Some for the net stack. Heres a > patch for the top level socket api tracepoints. If these are acceptable, I'll > begin porting over the rest for the remainder of the network stack. This patch > applies cleanly against the net-next tree. Do we now have lttng in linux-next? Otherwise these trace point would be useless there without more patching. ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-27 17:18 ` Christoph Hellwig @ 2009-01-27 17:20 ` David Miller 2009-01-27 17:23 ` Christoph Hellwig 0 siblings, 1 reply; 15+ messages in thread From: David Miller @ 2009-01-27 17:20 UTC (permalink / raw) To: hch; +Cc: nhorman, netdev From: Christoph Hellwig <hch@infradead.org> Date: Tue, 27 Jan 2009 12:18:57 -0500 > Do we now have lttng in linux-next? Otherwise these trace point would > be useless there without more patching. We're merging this stuff to solve the chicken and egg problem wherein the lttng tree merge is basically stalled. If the individual subsystem annotations go in, the hope is that they'll have less to merge and thus it's more likely to actually happen. ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-27 17:20 ` David Miller @ 2009-01-27 17:23 ` Christoph Hellwig 2009-01-27 18:21 ` David Miller 0 siblings, 1 reply; 15+ messages in thread From: Christoph Hellwig @ 2009-01-27 17:23 UTC (permalink / raw) To: David Miller; +Cc: hch, nhorman, netdev On Tue, Jan 27, 2009 at 09:20:17AM -0800, David Miller wrote: > From: Christoph Hellwig <hch@infradead.org> > Date: Tue, 27 Jan 2009 12:18:57 -0500 > > > Do we now have lttng in linux-next? Otherwise these trace point would > > be useless there without more patching. > > We're merging this stuff to solve the chicken and egg > problem wherein the lttng tree merge is basically > stalled. > > If the individual subsystem annotations go in, the hope > is that they'll have less to merge and thus it's more likely > to actually happen. I'm rather concerned as I haven't seen any progress on the lttng core lately. I'd really prefer to have a version in close to mergeable shape first, that's actively beeing pushed. Adding the instrumentation is trivial as seen by this small patch, but getting the core right (and who knows if that involves changing the way actual instrumentation works, it's not like that hasn't changed n million times yet) is essential. ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-27 17:23 ` Christoph Hellwig @ 2009-01-27 18:21 ` David Miller 2009-01-27 18:47 ` Christoph Hellwig 0 siblings, 1 reply; 15+ messages in thread From: David Miller @ 2009-01-27 18:21 UTC (permalink / raw) To: hch; +Cc: nhorman, netdev From: Christoph Hellwig <hch@infradead.org> Date: Tue, 27 Jan 2009 12:23:23 -0500 > On Tue, Jan 27, 2009 at 09:20:17AM -0800, David Miller wrote: > > We're merging this stuff to solve the chicken and egg > > problem wherein the lttng tree merge is basically > > stalled. > > > > If the individual subsystem annotations go in, the hope > > is that they'll have less to merge and thus it's more likely > > to actually happen. > > I'm rather concerned as I haven't seen any progress on the lttng core > lately. I'd really prefer to have a version in close to mergeable shape > first, that's actively beeing pushed. Adding the instrumentation is > trivial as seen by this small patch, but getting the core right (and who > knows if that involves changing the way actual instrumentation works, it's > not like that hasn't changed n million times yet) is essential. The block layer already merged trace annotations. I therefore see no harm in merging the net bits. If you disagree, either submit a revert of the block layer annotations, or content yourself in being a hypocrite :-) ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-27 18:21 ` David Miller @ 2009-01-27 18:47 ` Christoph Hellwig 2009-01-27 20:42 ` Neil Horman 2009-01-28 21:28 ` Neil Horman 0 siblings, 2 replies; 15+ messages in thread From: Christoph Hellwig @ 2009-01-27 18:47 UTC (permalink / raw) To: David Miller; +Cc: hch, nhorman, netdev On Tue, Jan 27, 2009 at 10:21:41AM -0800, David Miller wrote: > The block layer already merged trace annotations. I therefore see no > harm in merging the net bits. The block layer also has a consumer for them (blktrace) and soon a second one (the ftrace plugin) ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-27 18:47 ` Christoph Hellwig @ 2009-01-27 20:42 ` Neil Horman 2009-01-28 21:28 ` Neil Horman 1 sibling, 0 replies; 15+ messages in thread From: Neil Horman @ 2009-01-27 20:42 UTC (permalink / raw) To: Christoph Hellwig; +Cc: David Miller, netdev On Tue, Jan 27, 2009 at 01:47:04PM -0500, Christoph Hellwig wrote: > On Tue, Jan 27, 2009 at 10:21:41AM -0800, David Miller wrote: > > The block layer already merged trace annotations. I therefore see no > > harm in merging the net bits. > > The block layer also has a consumer for them (blktrace) and soon a > second one (the ftrace plugin) > > FWIW, ftrace is just as usefull for the network syscalls as any other set of syscalls (hence my starting with the top layer of tracepoints). I've also got another use case thats been requested of me. Specifically its been requested that we have some unified method for tracking network drops in one place, so that users don't have to use an amalgamation of tools to check statistics in several places to find where their netowork packets are getting dropped. I thought defining a set of tracepoints to detect such drops might make the start of a good solution. Granted the existing tracepoints don't cover that use case very well, but I like the idea of having the existing tracepoints in place before I go adding new ones (to ensure that I don't duplicate effort). Regards Neil ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-27 18:47 ` Christoph Hellwig 2009-01-27 20:42 ` Neil Horman @ 2009-01-28 21:28 ` Neil Horman 2009-02-01 10:02 ` David Miller 1 sibling, 1 reply; 15+ messages in thread From: Neil Horman @ 2009-01-28 21:28 UTC (permalink / raw) To: Christoph Hellwig; +Cc: David Miller, netdev On Tue, Jan 27, 2009 at 01:47:04PM -0500, Christoph Hellwig wrote: > On Tue, Jan 27, 2009 at 10:21:41AM -0800, David Miller wrote: > > The block layer already merged trace annotations. I therefore see no > > harm in merging the net bits. > > The block layer also has a consumer for them (blktrace) and soon a > second one (the ftrace plugin) > > FWIW, ftrace will also work well on these syscalls (which I think is rather usefull). Another use case came across my path the other day too. I've had several requests from various people to find a way to provide unifying frame drop indicators. Basically people hate to have to dig through various stat files and tools to look at all the places a frame can be dropped within our network stack. I think a nice solution to this problem might be some tracepoints that people could use to gather comprehensive tx/rx frame drop information using one tool. Of course, these provided tracepoints don't do that, but I think it would be good to get the existing tracepoint set in before I go poking at an implementation of that, just to ensure I avoid duplicate work Neil ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-01-28 21:28 ` Neil Horman @ 2009-02-01 10:02 ` David Miller 2009-02-01 18:53 ` Neil Horman 0 siblings, 1 reply; 15+ messages in thread From: David Miller @ 2009-02-01 10:02 UTC (permalink / raw) To: nhorman; +Cc: hch, netdev From: Neil Horman <nhorman@tuxdriver.com> Date: Wed, 28 Jan 2009 16:28:09 -0500 > Of course, these provided tracepoints don't do that, but I think it > would be good to get the existing tracepoint set in before I go > poking at an implementation of that, just to ensure I avoid > duplicate work Christoph's point is that it doesn't make any sense to merge this stuff in without any upstream users. The block stuff has such users, this net syscall trace stuff doesn't. Now your "where is the packet dropped" trace thing, that would something we could merge once that patch and a suitable tool exists. Just like the block layer cases. So I have to toss this patch for now, sorry. ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] net: add tracepoints to socket api 2009-02-01 10:02 ` David Miller @ 2009-02-01 18:53 ` Neil Horman 0 siblings, 0 replies; 15+ messages in thread From: Neil Horman @ 2009-02-01 18:53 UTC (permalink / raw) To: David Miller; +Cc: hch, netdev On Sun, Feb 01, 2009 at 02:02:47AM -0800, David Miller wrote: > From: Neil Horman <nhorman@tuxdriver.com> > Date: Wed, 28 Jan 2009 16:28:09 -0500 > > > Of course, these provided tracepoints don't do that, but I think it > > would be good to get the existing tracepoint set in before I go > > poking at an implementation of that, just to ensure I avoid > > duplicate work > > Christoph's point is that it doesn't make any sense to merge > this stuff in without any upstream users. > > The block stuff has such users, this net syscall trace stuff doesn't. > Not sure thats entirely true. Frysk can use the net syscall trace points just as well as it can monitor the block syscalls (Unless I'm missing somethig here). Granted thats not applicable for the deeper tracepoints, but for the top level stuff... > Now your "where is the packet dropped" trace thing, that would > something we could merge once that patch and a suitable tool exists. > Just like the block layer cases. > > So I have to toss this patch for now, sorry. > Thats ok, thats why I started small. :). I'll take a more serious look at implementing a consise drop monitoring utilty and come back to this. Thanks for the eyes all! Neil ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2009-02-01 18:53 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-01-26 19:59 [PATCH] net: add tracepoints to socket api Neil Horman 2009-01-27 1:22 ` David Miller 2009-01-27 1:31 ` Arnaldo Carvalho de Melo 2009-01-27 5:57 ` David Miller 2009-01-27 12:09 ` Neil Horman 2009-01-27 14:07 ` Neil Horman 2009-01-27 17:18 ` Christoph Hellwig 2009-01-27 17:20 ` David Miller 2009-01-27 17:23 ` Christoph Hellwig 2009-01-27 18:21 ` David Miller 2009-01-27 18:47 ` Christoph Hellwig 2009-01-27 20:42 ` Neil Horman 2009-01-28 21:28 ` Neil Horman 2009-02-01 10:02 ` David Miller 2009-02-01 18:53 ` Neil Horman
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).