2002-10-16 23:24:08

by Matt Reppert

[permalink] [raw]
Subject: [PATCH] rxrpc compile fix

Hm, spoke too soon on that last mail, I also need this to compile with
AFS. The kleave macro on line 126 of net/rxrpc/main.c needs an argument
but isn't given one. This fixes that; patch is against 2.5.43[-mm1].

Matt

--- linux-2.5.43-orig/net/rxrpc/main.c.orig 2002-10-16 18:23:05 -0500
+++ linux-2.5.43-orig/net/rxrpc/main.c 2002-10-16 18:22:26 -0500
@@ -123,5 +123,5 @@
__RXACCT(printk("Outstanding Peers : %d\n",atomic_read(&rxrpc_peer_count)));
__RXACCT(printk("Outstanding Transports : %d\n",atomic_read(&rxrpc_transport_count)));

- kleave();
+ kleave("");
} /* end rxrpc_cleanup() */