* [PATCH] SEQ_START_TOKEN for af_netlink.c
@ 2003-09-18 21:25 John Levon
2003-09-20 7:36 ` David S. Miller
0 siblings, 1 reply; 2+ messages in thread
From: John Levon @ 2003-09-18 21:25 UTC (permalink / raw)
To: netdev
Seems this got missed in the sweep.
regards
john
diff -Naurp -X dontdiff linux-cvs/net/netlink/af_netlink.c linux-fixes/net/netlink/af_netlink.c
--- linux-cvs/net/netlink/af_netlink.c 2003-09-05 18:48:00.000000000 +0100
+++ linux-fixes/net/netlink/af_netlink.c 2003-09-18 22:45:19.000000000 +0100
@@ -988,7 +988,7 @@ static struct sock *netlink_seq_socket_i
static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
{
read_lock(&nl_table_lock);
- return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : (void *) 1;
+ return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
}
static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
@@ -997,7 +997,7 @@ static void *netlink_seq_next(struct seq
++*pos;
- if (v == (void *) 1)
+ if (v == SEQ_START_TOKEN)
return netlink_seq_socket_idx(seq, 0);
s = sk_next(v);
@@ -1023,7 +1023,7 @@ static void netlink_seq_stop(struct seq_
static int netlink_seq_show(struct seq_file *seq, void *v)
{
- if (v == (void *)1)
+ if (v == SEQ_START_TOKEN)
seq_puts(seq,
"sk Eth Pid Groups "
"Rmem Wmem Dump Locks\n");
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] SEQ_START_TOKEN for af_netlink.c
2003-09-18 21:25 [PATCH] SEQ_START_TOKEN for af_netlink.c John Levon
@ 2003-09-20 7:36 ` David S. Miller
0 siblings, 0 replies; 2+ messages in thread
From: David S. Miller @ 2003-09-20 7:36 UTC (permalink / raw)
To: John Levon; +Cc: netdev
On Thu, 18 Sep 2003 22:25:18 +0100
John Levon <levon@movementarian.org> wrote:
> Seems this got missed in the sweep.
Applied, thanks John.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2003-09-20 7:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-09-18 21:25 [PATCH] SEQ_START_TOKEN for af_netlink.c John Levon
2003-09-20 7:36 ` David S. Miller
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).