diff options
author | Rami Rosen <ramirose@gmail.com> | 2009-06-25 04:42:19 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-07-06 02:16:10 (GMT) |
commit | af794c74240d8d788058bdfee339512e7ac029b2 (patch) | |
tree | 674ef9a7c3794610919439062d499bab6b042e39 /include/net | |
parent | 6f5bec195839dba3ca0ab8a7a53861e679109c0b (diff) | |
download | linux-fsl-qoriq-af794c74240d8d788058bdfee339512e7ac029b2.tar.xz |
cleanup: remove unused member in scm_cookie.
This patch removes an unused member (seq) scm_cookie; besides initialized
to 0 in the header file, it is not used.
Signed-off-by: Rami Rosen <ramirose@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/scm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/net/scm.h b/include/net/scm.h index f45bb6e..cf48c80 100644 --- a/include/net/scm.h +++ b/include/net/scm.h @@ -26,7 +26,6 @@ struct scm_cookie #ifdef CONFIG_SECURITY_NETWORK u32 secid; /* Passed security ID */ #endif - unsigned long seq; /* Connection seqno */ }; extern void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm); @@ -59,7 +58,6 @@ static __inline__ int scm_send(struct socket *sock, struct msghdr *msg, scm->creds.gid = current_gid(); scm->creds.pid = task_tgid_vnr(p); scm->fp = NULL; - scm->seq = 0; unix_get_peersec_dgram(sock, scm); if (msg->msg_controllen <= 0) return 0; |