aboutsummaryrefslogtreecommitdiffstats
path: root/net/sctp/socket.c
diff options
context:
space:
mode:
authorwangweidong <wangweidong1@huawei.com>2014-01-21 02:44:07 -0500
committerDavid S. Miller <davem@davemloft.net>2014-01-21 21:40:40 -0500
commit79b91130a2679ea5063d49c021d97346a09eb0a5 (patch)
treec529035c6a148ea9c407326f0ba5d29b9ab69e7d /net/sctp/socket.c
parent940287ee10e270b78fbda6c44eaa1def5fde897d (diff)
sctp: remove macros sctp_local_bh_{disable|enable}
Redefined local_bh_{disable|enable} to sctp_local_bh_{disable|enable} for user space friendly code which we haven't use in years, so removing them. Signed-off-by: Wang Weidong <wangweidong1@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/socket.c')
-rw-r--r--net/sctp/socket.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index fd7337ad4c24..f2e00059efdb 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -1510,7 +1510,7 @@ static void sctp_close(struct sock *sk, long timeout)
1510 /* Supposedly, no process has access to the socket, but 1510 /* Supposedly, no process has access to the socket, but
1511 * the net layers still may. 1511 * the net layers still may.
1512 */ 1512 */
1513 sctp_local_bh_disable(); 1513 local_bh_disable();
1514 sctp_bh_lock_sock(sk); 1514 sctp_bh_lock_sock(sk);
1515 1515
1516 /* Hold the sock, since sk_common_release() will put sock_put() 1516 /* Hold the sock, since sk_common_release() will put sock_put()
@@ -1520,7 +1520,7 @@ static void sctp_close(struct sock *sk, long timeout)
1520 sk_common_release(sk); 1520 sk_common_release(sk);
1521 1521
1522 sctp_bh_unlock_sock(sk); 1522 sctp_bh_unlock_sock(sk);
1523 sctp_local_bh_enable(); 1523 local_bh_enable();
1524 1524
1525 sock_put(sk); 1525 sock_put(sk);
1526 1526
@@ -5918,7 +5918,7 @@ static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
5918 5918
5919 pr_debug("%s: begins, snum:%d\n", __func__, snum); 5919 pr_debug("%s: begins, snum:%d\n", __func__, snum);
5920 5920
5921 sctp_local_bh_disable(); 5921 local_bh_disable();
5922 5922
5923 if (snum == 0) { 5923 if (snum == 0) {
5924 /* Search for an available port. */ 5924 /* Search for an available port. */
@@ -6052,7 +6052,7 @@ fail_unlock:
6052 sctp_spin_unlock(&head->lock); 6052 sctp_spin_unlock(&head->lock);
6053 6053
6054fail: 6054fail:
6055 sctp_local_bh_enable(); 6055 local_bh_enable();
6056 return ret; 6056 return ret;
6057} 6057}
6058 6058
@@ -6297,9 +6297,9 @@ static inline void __sctp_put_port(struct sock *sk)
6297 6297
6298void sctp_put_port(struct sock *sk) 6298void sctp_put_port(struct sock *sk)
6299{ 6299{
6300 sctp_local_bh_disable(); 6300 local_bh_disable();
6301 __sctp_put_port(sk); 6301 __sctp_put_port(sk);
6302 sctp_local_bh_enable(); 6302 local_bh_enable();
6303} 6303}
6304 6304
6305/* 6305/*
@@ -6950,14 +6950,14 @@ static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
6950 /* Hook this new socket in to the bind_hash list. */ 6950 /* Hook this new socket in to the bind_hash list. */
6951 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk), 6951 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
6952 inet_sk(oldsk)->inet_num)]; 6952 inet_sk(oldsk)->inet_num)];
6953 sctp_local_bh_disable(); 6953 local_bh_disable();
6954 sctp_spin_lock(&head->lock); 6954 sctp_spin_lock(&head->lock);
6955 pp = sctp_sk(oldsk)->bind_hash; 6955 pp = sctp_sk(oldsk)->bind_hash;
6956 sk_add_bind_node(newsk, &pp->owner); 6956 sk_add_bind_node(newsk, &pp->owner);
6957 sctp_sk(newsk)->bind_hash = pp; 6957 sctp_sk(newsk)->bind_hash = pp;
6958 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num; 6958 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
6959 sctp_spin_unlock(&head->lock); 6959 sctp_spin_unlock(&head->lock);
6960 sctp_local_bh_enable(); 6960 local_bh_enable();
6961 6961
6962 /* Copy the bind_addr list from the original endpoint to the new 6962 /* Copy the bind_addr list from the original endpoint to the new
6963 * endpoint so that we can handle restarts properly 6963 * endpoint so that we can handle restarts properly