diff options
Diffstat (limited to 'net/rose')
-rw-r--r-- | net/rose/af_rose.c | 30 | ||||
-rw-r--r-- | net/rose/rose_dev.c | 1 | ||||
-rw-r--r-- | net/rose/rose_link.c | 9 | ||||
-rw-r--r-- | net/rose/rose_loopback.c | 3 | ||||
-rw-r--r-- | net/rose/rose_out.c | 1 | ||||
-rw-r--r-- | net/rose/rose_route.c | 34 | ||||
-rw-r--r-- | net/rose/rose_subr.c | 1 | ||||
-rw-r--r-- | net/rose/sysctl_net_rose.c | 26 |
8 files changed, 46 insertions, 59 deletions
diff --git a/net/rose/af_rose.c b/net/rose/af_rose.c index 502cce76621d..4fb711a035f4 100644 --- a/net/rose/af_rose.c +++ b/net/rose/af_rose.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/types.h> | 18 | #include <linux/types.h> |
19 | #include <linux/socket.h> | 19 | #include <linux/socket.h> |
20 | #include <linux/in.h> | 20 | #include <linux/in.h> |
21 | #include <linux/slab.h> | ||
21 | #include <linux/kernel.h> | 22 | #include <linux/kernel.h> |
22 | #include <linux/sched.h> | 23 | #include <linux/sched.h> |
23 | #include <linux/spinlock.h> | 24 | #include <linux/spinlock.h> |
@@ -512,12 +513,13 @@ static struct proto rose_proto = { | |||
512 | .obj_size = sizeof(struct rose_sock), | 513 | .obj_size = sizeof(struct rose_sock), |
513 | }; | 514 | }; |
514 | 515 | ||
515 | static int rose_create(struct net *net, struct socket *sock, int protocol) | 516 | static int rose_create(struct net *net, struct socket *sock, int protocol, |
517 | int kern) | ||
516 | { | 518 | { |
517 | struct sock *sk; | 519 | struct sock *sk; |
518 | struct rose_sock *rose; | 520 | struct rose_sock *rose; |
519 | 521 | ||
520 | if (net != &init_net) | 522 | if (!net_eq(net, &init_net)) |
521 | return -EAFNOSUPPORT; | 523 | return -EAFNOSUPPORT; |
522 | 524 | ||
523 | if (sock->type != SOCK_SEQPACKET || protocol != 0) | 525 | if (sock->type != SOCK_SEQPACKET || protocol != 0) |
@@ -1403,29 +1405,13 @@ static int rose_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) | |||
1403 | static void *rose_info_start(struct seq_file *seq, loff_t *pos) | 1405 | static void *rose_info_start(struct seq_file *seq, loff_t *pos) |
1404 | __acquires(rose_list_lock) | 1406 | __acquires(rose_list_lock) |
1405 | { | 1407 | { |
1406 | int i; | ||
1407 | struct sock *s; | ||
1408 | struct hlist_node *node; | ||
1409 | |||
1410 | spin_lock_bh(&rose_list_lock); | 1408 | spin_lock_bh(&rose_list_lock); |
1411 | if (*pos == 0) | 1409 | return seq_hlist_start_head(&rose_list, *pos); |
1412 | return SEQ_START_TOKEN; | ||
1413 | |||
1414 | i = 1; | ||
1415 | sk_for_each(s, node, &rose_list) { | ||
1416 | if (i == *pos) | ||
1417 | return s; | ||
1418 | ++i; | ||
1419 | } | ||
1420 | return NULL; | ||
1421 | } | 1410 | } |
1422 | 1411 | ||
1423 | static void *rose_info_next(struct seq_file *seq, void *v, loff_t *pos) | 1412 | static void *rose_info_next(struct seq_file *seq, void *v, loff_t *pos) |
1424 | { | 1413 | { |
1425 | ++*pos; | 1414 | return seq_hlist_next(v, &rose_list, pos); |
1426 | |||
1427 | return (v == SEQ_START_TOKEN) ? sk_head(&rose_list) | ||
1428 | : sk_next((struct sock *)v); | ||
1429 | } | 1415 | } |
1430 | 1416 | ||
1431 | static void rose_info_stop(struct seq_file *seq, void *v) | 1417 | static void rose_info_stop(struct seq_file *seq, void *v) |
@@ -1443,7 +1429,7 @@ static int rose_info_show(struct seq_file *seq, void *v) | |||
1443 | "dest_addr dest_call src_addr src_call dev lci neigh st vs vr va t t1 t2 t3 hb idle Snd-Q Rcv-Q inode\n"); | 1429 | "dest_addr dest_call src_addr src_call dev lci neigh st vs vr va t t1 t2 t3 hb idle Snd-Q Rcv-Q inode\n"); |
1444 | 1430 | ||
1445 | else { | 1431 | else { |
1446 | struct sock *s = v; | 1432 | struct sock *s = sk_entry(v); |
1447 | struct rose_sock *rose = rose_sk(s); | 1433 | struct rose_sock *rose = rose_sk(s); |
1448 | const char *devname, *callsign; | 1434 | const char *devname, *callsign; |
1449 | const struct net_device *dev = rose->device; | 1435 | const struct net_device *dev = rose->device; |
@@ -1509,7 +1495,7 @@ static const struct file_operations rose_info_fops = { | |||
1509 | }; | 1495 | }; |
1510 | #endif /* CONFIG_PROC_FS */ | 1496 | #endif /* CONFIG_PROC_FS */ |
1511 | 1497 | ||
1512 | static struct net_proto_family rose_family_ops = { | 1498 | static const struct net_proto_family rose_family_ops = { |
1513 | .family = PF_ROSE, | 1499 | .family = PF_ROSE, |
1514 | .create = rose_create, | 1500 | .create = rose_create, |
1515 | .owner = THIS_MODULE, | 1501 | .owner = THIS_MODULE, |
diff --git a/net/rose/rose_dev.c b/net/rose/rose_dev.c index 424b893d1450..178ff4f73c85 100644 --- a/net/rose/rose_dev.c +++ b/net/rose/rose_dev.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/fcntl.h> | 19 | #include <linux/fcntl.h> |
20 | #include <linux/in.h> | 20 | #include <linux/in.h> |
21 | #include <linux/if_ether.h> | 21 | #include <linux/if_ether.h> |
22 | #include <linux/slab.h> | ||
22 | 23 | ||
23 | #include <asm/system.h> | 24 | #include <asm/system.h> |
24 | #include <asm/io.h> | 25 | #include <asm/io.h> |
diff --git a/net/rose/rose_link.c b/net/rose/rose_link.c index bd86a63960ce..a750a28e0221 100644 --- a/net/rose/rose_link.c +++ b/net/rose/rose_link.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/string.h> | 16 | #include <linux/string.h> |
17 | #include <linux/sockios.h> | 17 | #include <linux/sockios.h> |
18 | #include <linux/net.h> | 18 | #include <linux/net.h> |
19 | #include <linux/slab.h> | ||
19 | #include <net/ax25.h> | 20 | #include <net/ax25.h> |
20 | #include <linux/inet.h> | 21 | #include <linux/inet.h> |
21 | #include <linux/netdevice.h> | 22 | #include <linux/netdevice.h> |
@@ -101,13 +102,17 @@ static void rose_t0timer_expiry(unsigned long param) | |||
101 | static int rose_send_frame(struct sk_buff *skb, struct rose_neigh *neigh) | 102 | static int rose_send_frame(struct sk_buff *skb, struct rose_neigh *neigh) |
102 | { | 103 | { |
103 | ax25_address *rose_call; | 104 | ax25_address *rose_call; |
105 | ax25_cb *ax25s; | ||
104 | 106 | ||
105 | if (ax25cmp(&rose_callsign, &null_ax25_address) == 0) | 107 | if (ax25cmp(&rose_callsign, &null_ax25_address) == 0) |
106 | rose_call = (ax25_address *)neigh->dev->dev_addr; | 108 | rose_call = (ax25_address *)neigh->dev->dev_addr; |
107 | else | 109 | else |
108 | rose_call = &rose_callsign; | 110 | rose_call = &rose_callsign; |
109 | 111 | ||
112 | ax25s = neigh->ax25; | ||
110 | neigh->ax25 = ax25_send_frame(skb, 260, rose_call, &neigh->callsign, neigh->digipeat, neigh->dev); | 113 | neigh->ax25 = ax25_send_frame(skb, 260, rose_call, &neigh->callsign, neigh->digipeat, neigh->dev); |
114 | if (ax25s) | ||
115 | ax25_cb_put(ax25s); | ||
111 | 116 | ||
112 | return (neigh->ax25 != NULL); | 117 | return (neigh->ax25 != NULL); |
113 | } | 118 | } |
@@ -120,13 +125,17 @@ static int rose_send_frame(struct sk_buff *skb, struct rose_neigh *neigh) | |||
120 | static int rose_link_up(struct rose_neigh *neigh) | 125 | static int rose_link_up(struct rose_neigh *neigh) |
121 | { | 126 | { |
122 | ax25_address *rose_call; | 127 | ax25_address *rose_call; |
128 | ax25_cb *ax25s; | ||
123 | 129 | ||
124 | if (ax25cmp(&rose_callsign, &null_ax25_address) == 0) | 130 | if (ax25cmp(&rose_callsign, &null_ax25_address) == 0) |
125 | rose_call = (ax25_address *)neigh->dev->dev_addr; | 131 | rose_call = (ax25_address *)neigh->dev->dev_addr; |
126 | else | 132 | else |
127 | rose_call = &rose_callsign; | 133 | rose_call = &rose_callsign; |
128 | 134 | ||
135 | ax25s = neigh->ax25; | ||
129 | neigh->ax25 = ax25_find_cb(rose_call, &neigh->callsign, neigh->digipeat, neigh->dev); | 136 | neigh->ax25 = ax25_find_cb(rose_call, &neigh->callsign, neigh->digipeat, neigh->dev); |
137 | if (ax25s) | ||
138 | ax25_cb_put(ax25s); | ||
130 | 139 | ||
131 | return (neigh->ax25 != NULL); | 140 | return (neigh->ax25 != NULL); |
132 | } | 141 | } |
diff --git a/net/rose/rose_loopback.c b/net/rose/rose_loopback.c index 114df6eec8c3..ae4a9d99aec7 100644 --- a/net/rose/rose_loopback.c +++ b/net/rose/rose_loopback.c | |||
@@ -7,6 +7,7 @@ | |||
7 | * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk) | 7 | * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk) |
8 | */ | 8 | */ |
9 | #include <linux/types.h> | 9 | #include <linux/types.h> |
10 | #include <linux/slab.h> | ||
10 | #include <linux/socket.h> | 11 | #include <linux/socket.h> |
11 | #include <linux/timer.h> | 12 | #include <linux/timer.h> |
12 | #include <net/ax25.h> | 13 | #include <net/ax25.h> |
@@ -75,7 +76,7 @@ static void rose_loopback_timer(unsigned long param) | |||
75 | lci_i = ((skb->data[0] << 8) & 0xF00) + ((skb->data[1] << 0) & 0x0FF); | 76 | lci_i = ((skb->data[0] << 8) & 0xF00) + ((skb->data[1] << 0) & 0x0FF); |
76 | frametype = skb->data[2]; | 77 | frametype = skb->data[2]; |
77 | dest = (rose_address *)(skb->data + 4); | 78 | dest = (rose_address *)(skb->data + 4); |
78 | lci_o = 0xFFF - lci_i; | 79 | lci_o = ROSE_DEFAULT_MAXVC + 1 - lci_i; |
79 | 80 | ||
80 | skb_reset_transport_header(skb); | 81 | skb_reset_transport_header(skb); |
81 | 82 | ||
diff --git a/net/rose/rose_out.c b/net/rose/rose_out.c index 69820f93414b..4ebf33afbe47 100644 --- a/net/rose/rose_out.c +++ b/net/rose/rose_out.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/string.h> | 15 | #include <linux/string.h> |
16 | #include <linux/sockios.h> | 16 | #include <linux/sockios.h> |
17 | #include <linux/net.h> | 17 | #include <linux/net.h> |
18 | #include <linux/gfp.h> | ||
18 | #include <net/ax25.h> | 19 | #include <net/ax25.h> |
19 | #include <linux/inet.h> | 20 | #include <linux/inet.h> |
20 | #include <linux/netdevice.h> | 21 | #include <linux/netdevice.h> |
diff --git a/net/rose/rose_route.c b/net/rose/rose_route.c index f3e21989b88c..cbc244a128bd 100644 --- a/net/rose/rose_route.c +++ b/net/rose/rose_route.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/string.h> | 16 | #include <linux/string.h> |
17 | #include <linux/sockios.h> | 17 | #include <linux/sockios.h> |
18 | #include <linux/net.h> | 18 | #include <linux/net.h> |
19 | #include <linux/slab.h> | ||
19 | #include <net/ax25.h> | 20 | #include <net/ax25.h> |
20 | #include <linux/inet.h> | 21 | #include <linux/inet.h> |
21 | #include <linux/netdevice.h> | 22 | #include <linux/netdevice.h> |
@@ -77,8 +78,9 @@ static int __must_check rose_add_node(struct rose_route_struct *rose_route, | |||
77 | 78 | ||
78 | rose_neigh = rose_neigh_list; | 79 | rose_neigh = rose_neigh_list; |
79 | while (rose_neigh != NULL) { | 80 | while (rose_neigh != NULL) { |
80 | if (ax25cmp(&rose_route->neighbour, &rose_neigh->callsign) == 0 | 81 | if (ax25cmp(&rose_route->neighbour, |
81 | && rose_neigh->dev == dev) | 82 | &rose_neigh->callsign) == 0 && |
83 | rose_neigh->dev == dev) | ||
82 | break; | 84 | break; |
83 | rose_neigh = rose_neigh->next; | 85 | rose_neigh = rose_neigh->next; |
84 | } | 86 | } |
@@ -234,6 +236,8 @@ static void rose_remove_neigh(struct rose_neigh *rose_neigh) | |||
234 | 236 | ||
235 | if ((s = rose_neigh_list) == rose_neigh) { | 237 | if ((s = rose_neigh_list) == rose_neigh) { |
236 | rose_neigh_list = rose_neigh->next; | 238 | rose_neigh_list = rose_neigh->next; |
239 | if (rose_neigh->ax25) | ||
240 | ax25_cb_put(rose_neigh->ax25); | ||
237 | kfree(rose_neigh->digipeat); | 241 | kfree(rose_neigh->digipeat); |
238 | kfree(rose_neigh); | 242 | kfree(rose_neigh); |
239 | return; | 243 | return; |
@@ -242,6 +246,8 @@ static void rose_remove_neigh(struct rose_neigh *rose_neigh) | |||
242 | while (s != NULL && s->next != NULL) { | 246 | while (s != NULL && s->next != NULL) { |
243 | if (s->next == rose_neigh) { | 247 | if (s->next == rose_neigh) { |
244 | s->next = rose_neigh->next; | 248 | s->next = rose_neigh->next; |
249 | if (rose_neigh->ax25) | ||
250 | ax25_cb_put(rose_neigh->ax25); | ||
245 | kfree(rose_neigh->digipeat); | 251 | kfree(rose_neigh->digipeat); |
246 | kfree(rose_neigh); | 252 | kfree(rose_neigh); |
247 | return; | 253 | return; |
@@ -311,8 +317,9 @@ static int rose_del_node(struct rose_route_struct *rose_route, | |||
311 | 317 | ||
312 | rose_neigh = rose_neigh_list; | 318 | rose_neigh = rose_neigh_list; |
313 | while (rose_neigh != NULL) { | 319 | while (rose_neigh != NULL) { |
314 | if (ax25cmp(&rose_route->neighbour, &rose_neigh->callsign) == 0 | 320 | if (ax25cmp(&rose_route->neighbour, |
315 | && rose_neigh->dev == dev) | 321 | &rose_neigh->callsign) == 0 && |
322 | rose_neigh->dev == dev) | ||
316 | break; | 323 | break; |
317 | rose_neigh = rose_neigh->next; | 324 | rose_neigh = rose_neigh->next; |
318 | } | 325 | } |
@@ -600,13 +607,13 @@ struct net_device *rose_dev_first(void) | |||
600 | { | 607 | { |
601 | struct net_device *dev, *first = NULL; | 608 | struct net_device *dev, *first = NULL; |
602 | 609 | ||
603 | read_lock(&dev_base_lock); | 610 | rcu_read_lock(); |
604 | for_each_netdev(&init_net, dev) { | 611 | for_each_netdev_rcu(&init_net, dev) { |
605 | if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE) | 612 | if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE) |
606 | if (first == NULL || strncmp(dev->name, first->name, 3) < 0) | 613 | if (first == NULL || strncmp(dev->name, first->name, 3) < 0) |
607 | first = dev; | 614 | first = dev; |
608 | } | 615 | } |
609 | read_unlock(&dev_base_lock); | 616 | rcu_read_unlock(); |
610 | 617 | ||
611 | return first; | 618 | return first; |
612 | } | 619 | } |
@@ -618,8 +625,8 @@ struct net_device *rose_dev_get(rose_address *addr) | |||
618 | { | 625 | { |
619 | struct net_device *dev; | 626 | struct net_device *dev; |
620 | 627 | ||
621 | read_lock(&dev_base_lock); | 628 | rcu_read_lock(); |
622 | for_each_netdev(&init_net, dev) { | 629 | for_each_netdev_rcu(&init_net, dev) { |
623 | if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE && rosecmp(addr, (rose_address *)dev->dev_addr) == 0) { | 630 | if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE && rosecmp(addr, (rose_address *)dev->dev_addr) == 0) { |
624 | dev_hold(dev); | 631 | dev_hold(dev); |
625 | goto out; | 632 | goto out; |
@@ -627,7 +634,7 @@ struct net_device *rose_dev_get(rose_address *addr) | |||
627 | } | 634 | } |
628 | dev = NULL; | 635 | dev = NULL; |
629 | out: | 636 | out: |
630 | read_unlock(&dev_base_lock); | 637 | rcu_read_unlock(); |
631 | return dev; | 638 | return dev; |
632 | } | 639 | } |
633 | 640 | ||
@@ -635,14 +642,14 @@ static int rose_dev_exists(rose_address *addr) | |||
635 | { | 642 | { |
636 | struct net_device *dev; | 643 | struct net_device *dev; |
637 | 644 | ||
638 | read_lock(&dev_base_lock); | 645 | rcu_read_lock(); |
639 | for_each_netdev(&init_net, dev) { | 646 | for_each_netdev_rcu(&init_net, dev) { |
640 | if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE && rosecmp(addr, (rose_address *)dev->dev_addr) == 0) | 647 | if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE && rosecmp(addr, (rose_address *)dev->dev_addr) == 0) |
641 | goto out; | 648 | goto out; |
642 | } | 649 | } |
643 | dev = NULL; | 650 | dev = NULL; |
644 | out: | 651 | out: |
645 | read_unlock(&dev_base_lock); | 652 | rcu_read_unlock(); |
646 | return dev != NULL; | 653 | return dev != NULL; |
647 | } | 654 | } |
648 | 655 | ||
@@ -810,6 +817,7 @@ void rose_link_failed(ax25_cb *ax25, int reason) | |||
810 | 817 | ||
811 | if (rose_neigh != NULL) { | 818 | if (rose_neigh != NULL) { |
812 | rose_neigh->ax25 = NULL; | 819 | rose_neigh->ax25 = NULL; |
820 | ax25_cb_put(ax25); | ||
813 | 821 | ||
814 | rose_del_route_by_neigh(rose_neigh); | 822 | rose_del_route_by_neigh(rose_neigh); |
815 | rose_kill_by_neigh(rose_neigh); | 823 | rose_kill_by_neigh(rose_neigh); |
diff --git a/net/rose/rose_subr.c b/net/rose/rose_subr.c index b05108f382da..1734abba26a2 100644 --- a/net/rose/rose_subr.c +++ b/net/rose/rose_subr.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/string.h> | 15 | #include <linux/string.h> |
16 | #include <linux/sockios.h> | 16 | #include <linux/sockios.h> |
17 | #include <linux/net.h> | 17 | #include <linux/net.h> |
18 | #include <linux/slab.h> | ||
18 | #include <net/ax25.h> | 19 | #include <net/ax25.h> |
19 | #include <linux/inet.h> | 20 | #include <linux/inet.h> |
20 | #include <linux/netdevice.h> | 21 | #include <linux/netdevice.h> |
diff --git a/net/rose/sysctl_net_rose.c b/net/rose/sysctl_net_rose.c index 3bfe504faf86..df6d9dac2186 100644 --- a/net/rose/sysctl_net_rose.c +++ b/net/rose/sysctl_net_rose.c | |||
@@ -26,121 +26,101 @@ static struct ctl_table_header *rose_table_header; | |||
26 | 26 | ||
27 | static ctl_table rose_table[] = { | 27 | static ctl_table rose_table[] = { |
28 | { | 28 | { |
29 | .ctl_name = NET_ROSE_RESTART_REQUEST_TIMEOUT, | ||
30 | .procname = "restart_request_timeout", | 29 | .procname = "restart_request_timeout", |
31 | .data = &sysctl_rose_restart_request_timeout, | 30 | .data = &sysctl_rose_restart_request_timeout, |
32 | .maxlen = sizeof(int), | 31 | .maxlen = sizeof(int), |
33 | .mode = 0644, | 32 | .mode = 0644, |
34 | .proc_handler = proc_dointvec_minmax, | 33 | .proc_handler = proc_dointvec_minmax, |
35 | .strategy = sysctl_intvec, | ||
36 | .extra1 = &min_timer, | 34 | .extra1 = &min_timer, |
37 | .extra2 = &max_timer | 35 | .extra2 = &max_timer |
38 | }, | 36 | }, |
39 | { | 37 | { |
40 | .ctl_name = NET_ROSE_CALL_REQUEST_TIMEOUT, | ||
41 | .procname = "call_request_timeout", | 38 | .procname = "call_request_timeout", |
42 | .data = &sysctl_rose_call_request_timeout, | 39 | .data = &sysctl_rose_call_request_timeout, |
43 | .maxlen = sizeof(int), | 40 | .maxlen = sizeof(int), |
44 | .mode = 0644, | 41 | .mode = 0644, |
45 | .proc_handler = proc_dointvec_minmax, | 42 | .proc_handler = proc_dointvec_minmax, |
46 | .strategy = sysctl_intvec, | ||
47 | .extra1 = &min_timer, | 43 | .extra1 = &min_timer, |
48 | .extra2 = &max_timer | 44 | .extra2 = &max_timer |
49 | }, | 45 | }, |
50 | { | 46 | { |
51 | .ctl_name = NET_ROSE_RESET_REQUEST_TIMEOUT, | ||
52 | .procname = "reset_request_timeout", | 47 | .procname = "reset_request_timeout", |
53 | .data = &sysctl_rose_reset_request_timeout, | 48 | .data = &sysctl_rose_reset_request_timeout, |
54 | .maxlen = sizeof(int), | 49 | .maxlen = sizeof(int), |
55 | .mode = 0644, | 50 | .mode = 0644, |
56 | .proc_handler = proc_dointvec_minmax, | 51 | .proc_handler = proc_dointvec_minmax, |
57 | .strategy = sysctl_intvec, | ||
58 | .extra1 = &min_timer, | 52 | .extra1 = &min_timer, |
59 | .extra2 = &max_timer | 53 | .extra2 = &max_timer |
60 | }, | 54 | }, |
61 | { | 55 | { |
62 | .ctl_name = NET_ROSE_CLEAR_REQUEST_TIMEOUT, | ||
63 | .procname = "clear_request_timeout", | 56 | .procname = "clear_request_timeout", |
64 | .data = &sysctl_rose_clear_request_timeout, | 57 | .data = &sysctl_rose_clear_request_timeout, |
65 | .maxlen = sizeof(int), | 58 | .maxlen = sizeof(int), |
66 | .mode = 0644, | 59 | .mode = 0644, |
67 | .proc_handler = proc_dointvec_minmax, | 60 | .proc_handler = proc_dointvec_minmax, |
68 | .strategy = sysctl_intvec, | ||
69 | .extra1 = &min_timer, | 61 | .extra1 = &min_timer, |
70 | .extra2 = &max_timer | 62 | .extra2 = &max_timer |
71 | }, | 63 | }, |
72 | { | 64 | { |
73 | .ctl_name = NET_ROSE_NO_ACTIVITY_TIMEOUT, | ||
74 | .procname = "no_activity_timeout", | 65 | .procname = "no_activity_timeout", |
75 | .data = &sysctl_rose_no_activity_timeout, | 66 | .data = &sysctl_rose_no_activity_timeout, |
76 | .maxlen = sizeof(int), | 67 | .maxlen = sizeof(int), |
77 | .mode = 0644, | 68 | .mode = 0644, |
78 | .proc_handler = proc_dointvec_minmax, | 69 | .proc_handler = proc_dointvec_minmax, |
79 | .strategy = sysctl_intvec, | ||
80 | .extra1 = &min_idle, | 70 | .extra1 = &min_idle, |
81 | .extra2 = &max_idle | 71 | .extra2 = &max_idle |
82 | }, | 72 | }, |
83 | { | 73 | { |
84 | .ctl_name = NET_ROSE_ACK_HOLD_BACK_TIMEOUT, | ||
85 | .procname = "acknowledge_hold_back_timeout", | 74 | .procname = "acknowledge_hold_back_timeout", |
86 | .data = &sysctl_rose_ack_hold_back_timeout, | 75 | .data = &sysctl_rose_ack_hold_back_timeout, |
87 | .maxlen = sizeof(int), | 76 | .maxlen = sizeof(int), |
88 | .mode = 0644, | 77 | .mode = 0644, |
89 | .proc_handler = proc_dointvec_minmax, | 78 | .proc_handler = proc_dointvec_minmax, |
90 | .strategy = sysctl_intvec, | ||
91 | .extra1 = &min_timer, | 79 | .extra1 = &min_timer, |
92 | .extra2 = &max_timer | 80 | .extra2 = &max_timer |
93 | }, | 81 | }, |
94 | { | 82 | { |
95 | .ctl_name = NET_ROSE_ROUTING_CONTROL, | ||
96 | .procname = "routing_control", | 83 | .procname = "routing_control", |
97 | .data = &sysctl_rose_routing_control, | 84 | .data = &sysctl_rose_routing_control, |
98 | .maxlen = sizeof(int), | 85 | .maxlen = sizeof(int), |
99 | .mode = 0644, | 86 | .mode = 0644, |
100 | .proc_handler = proc_dointvec_minmax, | 87 | .proc_handler = proc_dointvec_minmax, |
101 | .strategy = sysctl_intvec, | ||
102 | .extra1 = &min_route, | 88 | .extra1 = &min_route, |
103 | .extra2 = &max_route | 89 | .extra2 = &max_route |
104 | }, | 90 | }, |
105 | { | 91 | { |
106 | .ctl_name = NET_ROSE_LINK_FAIL_TIMEOUT, | ||
107 | .procname = "link_fail_timeout", | 92 | .procname = "link_fail_timeout", |
108 | .data = &sysctl_rose_link_fail_timeout, | 93 | .data = &sysctl_rose_link_fail_timeout, |
109 | .maxlen = sizeof(int), | 94 | .maxlen = sizeof(int), |
110 | .mode = 0644, | 95 | .mode = 0644, |
111 | .proc_handler = proc_dointvec_minmax, | 96 | .proc_handler = proc_dointvec_minmax, |
112 | .strategy = sysctl_intvec, | ||
113 | .extra1 = &min_ftimer, | 97 | .extra1 = &min_ftimer, |
114 | .extra2 = &max_ftimer | 98 | .extra2 = &max_ftimer |
115 | }, | 99 | }, |
116 | { | 100 | { |
117 | .ctl_name = NET_ROSE_MAX_VCS, | ||
118 | .procname = "maximum_virtual_circuits", | 101 | .procname = "maximum_virtual_circuits", |
119 | .data = &sysctl_rose_maximum_vcs, | 102 | .data = &sysctl_rose_maximum_vcs, |
120 | .maxlen = sizeof(int), | 103 | .maxlen = sizeof(int), |
121 | .mode = 0644, | 104 | .mode = 0644, |
122 | .proc_handler = proc_dointvec_minmax, | 105 | .proc_handler = proc_dointvec_minmax, |
123 | .strategy = sysctl_intvec, | ||
124 | .extra1 = &min_maxvcs, | 106 | .extra1 = &min_maxvcs, |
125 | .extra2 = &max_maxvcs | 107 | .extra2 = &max_maxvcs |
126 | }, | 108 | }, |
127 | { | 109 | { |
128 | .ctl_name = NET_ROSE_WINDOW_SIZE, | ||
129 | .procname = "window_size", | 110 | .procname = "window_size", |
130 | .data = &sysctl_rose_window_size, | 111 | .data = &sysctl_rose_window_size, |
131 | .maxlen = sizeof(int), | 112 | .maxlen = sizeof(int), |
132 | .mode = 0644, | 113 | .mode = 0644, |
133 | .proc_handler = proc_dointvec_minmax, | 114 | .proc_handler = proc_dointvec_minmax, |
134 | .strategy = sysctl_intvec, | ||
135 | .extra1 = &min_window, | 115 | .extra1 = &min_window, |
136 | .extra2 = &max_window | 116 | .extra2 = &max_window |
137 | }, | 117 | }, |
138 | { .ctl_name = 0 } | 118 | { } |
139 | }; | 119 | }; |
140 | 120 | ||
141 | static struct ctl_path rose_path[] = { | 121 | static struct ctl_path rose_path[] = { |
142 | { .procname = "net", .ctl_name = CTL_NET, }, | 122 | { .procname = "net", }, |
143 | { .procname = "rose", .ctl_name = NET_ROSE, }, | 123 | { .procname = "rose", }, |
144 | { } | 124 | { } |
145 | }; | 125 | }; |
146 | 126 | ||