[PATCH] SEQ_START_TOKEN for af_netlink.c

STALE8356d

2 messages, 2 authors, 2003-09-20 · open the first message on its own page

[PATCH] SEQ_START_TOKEN for af_netlink.c

From: John Levon <hidden>
Date: 2003-09-18 21:25:18

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");

Re: [PATCH] SEQ_START_TOKEN for af_netlink.c

From: David S. Miller <hidden>
Date: 2003-09-20 07:36:05

On Thu, 18 Sep 2003 22:25:18 +0100
John Levon [off-list ref] wrote:
Seems this got missed in the sweep.
Applied, thanks John.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help