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>
This commit is contained in:
committed by
Linus Torvalds
parent
fbf6bfca76
commit
b5606c2d44
@@ -1731,7 +1731,7 @@ void sock_init_data(struct socket *sock, struct sock *sk)
|
||||
atomic_set(&sk->sk_drops, 0);
|
||||
}
|
||||
|
||||
void fastcall lock_sock_nested(struct sock *sk, int subclass)
|
||||
void lock_sock_nested(struct sock *sk, int subclass)
|
||||
{
|
||||
might_sleep();
|
||||
spin_lock_bh(&sk->sk_lock.slock);
|
||||
@@ -1748,7 +1748,7 @@ void fastcall lock_sock_nested(struct sock *sk, int subclass)
|
||||
|
||||
EXPORT_SYMBOL(lock_sock_nested);
|
||||
|
||||
void fastcall release_sock(struct sock *sk)
|
||||
void release_sock(struct sock *sk)
|
||||
{
|
||||
/*
|
||||
* The sk_lock has mutex_unlock() semantics:
|
||||
|
Reference in New Issue
Block a user