diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-13 18:03:16 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-13 19:21:18 -0500 |
commit | b5606c2d4447e80b1d72406af4e78af1eda611d4 (patch) | |
tree | ebdaa1a0aae4279b84af82651c16a8777f76bfe4 /net/core/sock.c | |
parent | fbf6bfca76d50abef478ba902b8597ecbadfd390 (diff) |
remove final fastcall users
fastcall always expands to empty, remove it.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net/core/sock.c')
-rw-r--r-- | net/core/sock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/sock.c b/net/core/sock.c index 433715fb141a..09cb3a74de7f 100644 --- a/net/core/sock.c +++ b/net/core/sock.c | |||
@@ -1731,7 +1731,7 @@ void sock_init_data(struct socket *sock, struct sock *sk) | |||
1731 | atomic_set(&sk->sk_drops, 0); | 1731 | atomic_set(&sk->sk_drops, 0); |
1732 | } | 1732 | } |
1733 | 1733 | ||
1734 | void fastcall lock_sock_nested(struct sock *sk, int subclass) | 1734 | void lock_sock_nested(struct sock *sk, int subclass) |
1735 | { | 1735 | { |
1736 | might_sleep(); | 1736 | might_sleep(); |
1737 | spin_lock_bh(&sk->sk_lock.slock); | 1737 | spin_lock_bh(&sk->sk_lock.slock); |
@@ -1748,7 +1748,7 @@ void fastcall lock_sock_nested(struct sock *sk, int subclass) | |||
1748 | 1748 | ||
1749 | EXPORT_SYMBOL(lock_sock_nested); | 1749 | EXPORT_SYMBOL(lock_sock_nested); |
1750 | 1750 | ||
1751 | void fastcall release_sock(struct sock *sk) | 1751 | void release_sock(struct sock *sk) |
1752 | { | 1752 | { |
1753 | /* | 1753 | /* |
1754 | * The sk_lock has mutex_unlock() semantics: | 1754 | * The sk_lock has mutex_unlock() semantics: |