diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-23 17:36:01 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-26 02:46:11 -0500 |
commit | 21d206819a6f111c77f0a9e920f5efca06dc65fd (patch) | |
tree | 564951cdf932d4fc6790ee3fefbc206517650517 /net/socket.c | |
parent | 0e9b10a90f1c30f25dd6f130130240745ab14010 (diff) | |
download | linux-3.10-21d206819a6f111c77f0a9e920f5efca06dc65fd.tar.gz linux-3.10-21d206819a6f111c77f0a9e920f5efca06dc65fd.tar.bz2 linux-3.10-21d206819a6f111c77f0a9e920f5efca06dc65fd.zip |
get_empty_filp()/alloc_file() leave both ->f_pos and ->f_version zero
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'net/socket.c')
-rw-r--r-- | net/socket.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/socket.c b/net/socket.c index f4a8c5a0b8d..b6ca6896dec 100644 --- a/net/socket.c +++ b/net/socket.c @@ -379,7 +379,6 @@ struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname) sock->file = file; file->f_flags = O_RDWR | (flags & O_NONBLOCK); - file->f_pos = 0; file->private_data = sock; return file; } |