net/handshake: Remove unneeded check from handshake_dup()

handshake_req_submit() now verifies that the socket has a file.

Fixes: 3b3009ea8a ("net/handshake: Create a NETLINK service for handling handshake requests")
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
Chuck Lever 2023-05-11 11:47:09 -04:00 коммит произвёл Jakub Kicinski
Родитель 0c615f1cc3
Коммит a095326e2c
1 изменённых файлов: 0 добавлений и 3 удалений

Просмотреть файл

@ -99,9 +99,6 @@ static int handshake_dup(struct socket *sock)
struct file *file; struct file *file;
int newfd; int newfd;
if (!sock->file)
return -EBADF;
file = get_file(sock->file); file = get_file(sock->file);
newfd = get_unused_fd_flags(O_CLOEXEC); newfd = get_unused_fd_flags(O_CLOEXEC);
if (newfd < 0) { if (newfd < 0) {