Messages in this thread Patch in this message |  | | Date | Mon, 12 May 2003 17:38:01 -0700 | From | Chris Wright <> | Subject | [PATCH] fix net/rxrpc/proc.c |
| |
A recent change in 2.5.69-bk from Yoshfuji broke compilation of rxrpc code. It erroneously adds an owner field to the rxrpc_proc_peers_ops seq_operations. Fix below.
thanks, -chris -- Linux Security Modules http://lsm.immunix.org http://lsm.bkbits.net
===== net/rxrpc/proc.c 1.3 vs edited ===== --- 1.3/net/rxrpc/proc.c Sat May 10 11:46:35 2003 +++ edited/net/rxrpc/proc.c Mon May 12 17:25:12 2003 @@ -52,7 +52,6 @@ static int rxrpc_proc_peers_show(struct seq_file *m, void *v); static struct seq_operations rxrpc_proc_peers_ops = { - .owner = THIS_MODULE, .start = rxrpc_proc_peers_start, .next = rxrpc_proc_peers_next, .stop = rxrpc_proc_peers_stop, - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |