| Submitter | Gerrit Renker |
|---|---|
| Date | Oct. 15, 2011, 7:26 p.m. |
| Message ID | <20111015192656.GA4066@gerrit.erg.abdn.ac.uk> |
| Download | mbox | patch |
| Permalink | /patch/119989/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Gerrit Renker <gerrit@erg.abdn.ac.uk> Date: Sat, 15 Oct 2011 13:26:56 -0600 > ipv4: compat_ioctl is local to af_inet.c, make it static > > Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk> Applied, thanks. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
--- a/net/ipv4/af_inet.c +++ b/net/ipv4/af_inet.c @@ -893,7 +893,7 @@ int inet_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) EXPORT_SYMBOL(inet_ioctl); #ifdef CONFIG_COMPAT -int inet_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) +static int inet_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) { struct sock *sk = sock->sk; int err = -ENOIOCTLCMD;
ipv4: compat_ioctl is local to af_inet.c, make it static Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk> --- net/ipv4/af_inet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html