aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/raw.h4
-rw-r--r--include/net/sock.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/include/net/raw.h b/include/net/raw.h
index 1828f81fe374..6c14a656357a 100644
--- a/include/net/raw.h
+++ b/include/net/raw.h
@@ -53,7 +53,7 @@ int raw_seq_open(struct inode *ino, struct file *file,
53 53
54#endif 54#endif
55 55
56void raw_hash_sk(struct sock *sk, struct raw_hashinfo *h); 56void raw_hash_sk(struct sock *sk);
57void raw_unhash_sk(struct sock *sk, struct raw_hashinfo *h); 57void raw_unhash_sk(struct sock *sk);
58 58
59#endif /* _RAW_H */ 59#endif /* _RAW_H */
diff --git a/include/net/sock.h b/include/net/sock.h
index c3175c400b79..b433b1ed203d 100644
--- a/include/net/sock.h
+++ b/include/net/sock.h
@@ -504,6 +504,7 @@ extern int sk_wait_data(struct sock *sk, long *timeo);
504struct request_sock_ops; 504struct request_sock_ops;
505struct timewait_sock_ops; 505struct timewait_sock_ops;
506struct inet_hashinfo; 506struct inet_hashinfo;
507struct raw_hashinfo;
507 508
508/* Networking protocol blocks we attach to sockets. 509/* Networking protocol blocks we attach to sockets.
509 * socket layer -> transport layer interface 510 * socket layer -> transport layer interface
@@ -589,6 +590,7 @@ struct proto {
589 union { 590 union {
590 struct inet_hashinfo *hashinfo; 591 struct inet_hashinfo *hashinfo;
591 struct hlist_head *udp_hash; 592 struct hlist_head *udp_hash;
593 struct raw_hashinfo *raw_hash;
592 } h; 594 } h;
593 595
594 struct module *owner; 596 struct module *owner;