* [2.6 patch] net/socket.c: make a function static
@ 2004-12-12 21:15 Adrian Bunk
2004-12-28 2:52 ` David S. Miller
0 siblings, 1 reply; 2+ messages in thread
From: Adrian Bunk @ 2004-12-12 21:15 UTC (permalink / raw)
To: netdev, linux-kernel
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@stusta.de>
--- 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;
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [2.6 patch] net/socket.c: make a function static
2004-12-12 21:15 [2.6 patch] net/socket.c: make a function static Adrian Bunk
@ 2004-12-28 2:52 ` David S. Miller
0 siblings, 0 replies; 2+ messages in thread
From: David S. Miller @ 2004-12-28 2:52 UTC (permalink / raw)
To: Adrian Bunk; +Cc: netdev, linux-kernel
On Sun, 12 Dec 2004 22:15:06 +0100
Adrian Bunk <bunk@stusta.de> wrote:
> The patch below makes a needlessly global function static.
Applied, I think we used to use this for the compat layers.
Thanks Adrian.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-12-28 2:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-12 21:15 [2.6 patch] net/socket.c: make a function static Adrian Bunk
2004-12-28 2:52 ` David S. Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).