aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2007-09-26 01:54:32 +0100
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-09-26 09:22:04 -0700
commit78bd8fbbcd66fc977baa40e7fd838a4461b0f727 (patch)
treea2f07d31f69cba7a6afdb8e1d7ad39c9076b510d /net
parenthibernation doesn't even build on frv - tons of helpers are missing (diff)
downloadlinux-dev-78bd8fbbcd66fc977baa40e7fd838a4461b0f727.tar.xz
linux-dev-78bd8fbbcd66fc977baa40e7fd838a4461b0f727.zip
fix sctp_del_bind_addr() last argument type
It gets pointer to fastcall function, expects a pointer to normal one and calls the sucker. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net')
-rw-r--r--net/sctp/bind_addr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/bind_addr.c b/net/sctp/bind_addr.c
index d35cbf5aae33..dfffa94fb9f6 100644
--- a/net/sctp/bind_addr.c
+++ b/net/sctp/bind_addr.c
@@ -181,7 +181,7 @@ int sctp_add_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *new,
* structure.
*/
int sctp_del_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *del_addr,
- void (*rcu_call)(struct rcu_head *head,
+ void fastcall (*rcu_call)(struct rcu_head *head,
void (*func)(struct rcu_head *head)))
{
struct sctp_sockaddr_entry *addr, *temp;