aboutsummaryrefslogtreecommitdiffstats
path: root/net/rose/af_rose.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/rose/af_rose.c')
-rw-r--r--net/rose/af_rose.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/net/rose/af_rose.c b/net/rose/af_rose.c
index 323d42a7b360..4a31a81059ab 100644
--- a/net/rose/af_rose.c
+++ b/net/rose/af_rose.c
@@ -116,7 +116,7 @@ int rosecmp(rose_address *addr1, rose_address *addr2)
116 */ 116 */
117int rosecmpm(rose_address *addr1, rose_address *addr2, unsigned short mask) 117int rosecmpm(rose_address *addr1, rose_address *addr2, unsigned short mask)
118{ 118{
119 int i, j; 119 unsigned int i, j;
120 120
121 if (mask > 10) 121 if (mask > 10)
122 return 1; 122 return 1;
@@ -973,8 +973,8 @@ int rose_rx_call_request(struct sk_buff *skb, struct net_device *dev, struct ros
973 */ 973 */
974 memset(&facilities, 0x00, sizeof(struct rose_facilities_struct)); 974 memset(&facilities, 0x00, sizeof(struct rose_facilities_struct));
975 975
976 len = (((skb->data[3] >> 4) & 0x0F) + 1) / 2; 976 len = (((skb->data[3] >> 4) & 0x0F) + 1) >> 1;
977 len += (((skb->data[3] >> 0) & 0x0F) + 1) / 2; 977 len += (((skb->data[3] >> 0) & 0x0F) + 1) >> 1;
978 if (!rose_parse_facilities(skb->data + len + 4, &facilities)) { 978 if (!rose_parse_facilities(skb->data + len + 4, &facilities)) {
979 rose_transmit_clear_request(neigh, lci, ROSE_INVALID_FACILITY, 76); 979 rose_transmit_clear_request(neigh, lci, ROSE_INVALID_FACILITY, 76);
980 return 0; 980 return 0;
@@ -1377,6 +1377,7 @@ static int rose_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1377 1377
1378#ifdef CONFIG_PROC_FS 1378#ifdef CONFIG_PROC_FS
1379static void *rose_info_start(struct seq_file *seq, loff_t *pos) 1379static void *rose_info_start(struct seq_file *seq, loff_t *pos)
1380 __acquires(rose_list_lock)
1380{ 1381{
1381 int i; 1382 int i;
1382 struct sock *s; 1383 struct sock *s;
@@ -1404,6 +1405,7 @@ static void *rose_info_next(struct seq_file *seq, void *v, loff_t *pos)
1404} 1405}
1405 1406
1406static void rose_info_stop(struct seq_file *seq, void *v) 1407static void rose_info_stop(struct seq_file *seq, void *v)
1408 __releases(rose_list_lock)
1407{ 1409{
1408 spin_unlock_bh(&rose_list_lock); 1410 spin_unlock_bh(&rose_list_lock);
1409} 1411}