[2.6 patch] net/socket.c: make a function static

From: Adrian Bunk
Date: Sun Dec 12 2004 - 16:20:19 EST


The patch below makes a needlessly global function static.


diffstat output:
include/linux/net.h | 4 ----
net/socket.c | 5 +++--
2 files changed, 3 insertions(+), 6 deletions(-)


Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

--- linux-2.6.10-rc2-mm4-full/include/linux/net.h.old 2004-12-12 19:03:55.000000000 +0100
+++ linux-2.6.10-rc2-mm4-full/include/linux/net.h 2004-12-12 19:04:01.000000000 +0100
@@ -187,10 +187,6 @@
size_t len);
extern int sock_recvmsg(struct socket *sock, struct msghdr *msg,
size_t size, int flags);
-extern int sock_readv_writev(int type, struct inode *inode,
- struct file *file,
- const struct iovec *iov, long count,
- size_t size);
extern int sock_map_fd(struct socket *sock);
extern struct socket *sockfd_lookup(int fd, int *err);
#define sockfd_put(sock) fput(sock->file)
--- linux-2.6.10-rc2-mm4-full/net/socket.c.old 2004-12-12 19:04:08.000000000 +0100
+++ linux-2.6.10-rc2-mm4-full/net/socket.c 2004-12-12 19:04:46.000000000 +0100
@@ -736,8 +736,9 @@
return sock->ops->sendpage(sock, page, offset, size, flags);
}

-int sock_readv_writev(int type, struct inode * inode, struct file * file,
- const struct iovec * iov, long count, size_t size)
+static int sock_readv_writev(int type, struct inode * inode,
+ struct file * file, const struct iovec * iov,
+ long count, size_t size)
{
struct msghdr msg;
struct socket *sock;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/