X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=net%2Frxrpc%2Fpeer.c;h=8a275157a3bb1b7927d268fae7d07455be5fa5bd;hb=97bf2856c6014879bd04983a3e9dfcdac1e7fe85;hp=a0665d6298e96c4199cbb3c6954cc3aecd43be91;hpb=5273a3df6485dc2ad6aa7ddd441b9a21970f003b;p=linux-2.6.git diff --git a/net/rxrpc/peer.c b/net/rxrpc/peer.c index a0665d629..8a275157a 100644 --- a/net/rxrpc/peer.c +++ b/net/rxrpc/peer.c @@ -30,6 +30,8 @@ LIST_HEAD(rxrpc_peers); DECLARE_RWSEM(rxrpc_peers_sem); unsigned long rxrpc_peer_timeout = 12 * 60 * 60; +static void rxrpc_peer_do_timeout(struct rxrpc_peer *peer); + static void __rxrpc_peer_timeout(rxrpc_timer_t *timer) { struct rxrpc_peer *peer = @@ -48,7 +50,7 @@ static const struct rxrpc_timer_ops rxrpc_peer_timer_ops = { /* * create a peer record */ -static int __rxrpc_create_peer(struct rxrpc_transport *trans, uint32_t addr, +static int __rxrpc_create_peer(struct rxrpc_transport *trans, __be32 addr, struct rxrpc_peer **_peer) { struct rxrpc_peer *peer; @@ -56,13 +58,12 @@ static int __rxrpc_create_peer(struct rxrpc_transport *trans, uint32_t addr, _enter("%p,%08x", trans, ntohl(addr)); /* allocate and initialise a peer record */ - peer = kmalloc(sizeof(struct rxrpc_peer), GFP_KERNEL); + peer = kzalloc(sizeof(struct rxrpc_peer), GFP_KERNEL); if (!peer) { _leave(" = -ENOMEM"); return -ENOMEM; } - memset(peer, 0, sizeof(struct rxrpc_peer)); atomic_set(&peer->usage, 1); INIT_LIST_HEAD(&peer->link); @@ -96,7 +97,7 @@ static int __rxrpc_create_peer(struct rxrpc_transport *trans, uint32_t addr, * - returns (if successful) with peer record usage incremented * - resurrects it from the graveyard if found there */ -int rxrpc_peer_lookup(struct rxrpc_transport *trans, uint32_t addr, +int rxrpc_peer_lookup(struct rxrpc_transport *trans, __be32 addr, struct rxrpc_peer **_peer) { struct rxrpc_peer *peer, *candidate = NULL; @@ -259,7 +260,7 @@ void rxrpc_put_peer(struct rxrpc_peer *peer) * handle a peer timing out in the graveyard * - called from krxtimod */ -void rxrpc_peer_do_timeout(struct rxrpc_peer *peer) +static void rxrpc_peer_do_timeout(struct rxrpc_peer *peer) { struct rxrpc_transport *trans = peer->trans;