get_empty_filp()/alloc_file() leave both ->f_pos and ->f_version zero

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2013-02-23 17:36:01 -05:00
부모 0e9b10a90f
커밋 21d206819a
3개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@@ -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;
}