aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
Diffstat (limited to 'net/core')
-rw-r--r--net/core/dev.c2
-rw-r--r--net/core/sock.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 9549417250bb..b2f6cb5e0f72 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2143,7 +2143,7 @@ static int process_backlog(struct napi_struct *napi, int quota)
2143 * 2143 *
2144 * The entry's receive function will be scheduled to run 2144 * The entry's receive function will be scheduled to run
2145 */ 2145 */
2146void fastcall __napi_schedule(struct napi_struct *n) 2146void __napi_schedule(struct napi_struct *n)
2147{ 2147{
2148 unsigned long flags; 2148 unsigned long flags;
2149 2149
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
1734void fastcall lock_sock_nested(struct sock *sk, int subclass) 1734void 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
1749EXPORT_SYMBOL(lock_sock_nested); 1749EXPORT_SYMBOL(lock_sock_nested);
1750 1750
1751void fastcall release_sock(struct sock *sk) 1751void 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: