summaryrefslogtreecommitdiff
path: root/include/net/inet_sock.h
diff options
context:
space:
mode:
authorLouis Nyffenegger <louis.nyffenegger@gmail.com>2006-08-08 00:56:11 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 14:54:10 -0700
commit1a01912ae0a5666c4c24eaae2b4821711e2ad79a (patch)
tree64a3767ce51581a67b435931a3868f545bcac764 /include/net/inet_sock.h
parent0298f36a579b5bd7f10f6f6d57e5929977a865a1 (diff)
[INET]: Remove is_setbyuser patch
The value is_setbyuser from struct ip_options is never used and set only one time (http://linux-net.osdl.org/index.php/TODO#IPV4). This little patch removes it from the kernel source. Signed-off-by: Louis Nyffenegger <louis.nyffenegger@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/inet_sock.h')
-rw-r--r--include/net/inet_sock.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/net/inet_sock.h b/include/net/inet_sock.h
index f4caad56cd03..f6242710f2ff 100644
--- a/include/net/inet_sock.h
+++ b/include/net/inet_sock.h
@@ -27,7 +27,6 @@
/** struct ip_options - IP Options
*
* @faddr - Saved first hop address
- * @is_setbyuser - Set by setsockopt?
* @is_data - Options in __data, rather than skb
* @is_strictroute - Strict source route
* @srr_is_hit - Packet destination addr was our one
@@ -42,8 +41,7 @@ struct ip_options {
unsigned char srr;
unsigned char rr;
unsigned char ts;
- unsigned char is_setbyuser:1,
- is_data:1,
+ unsigned char is_data:1,
is_strictroute:1,
srr_is_hit:1,
is_changed:1,