From: Chuck Lever Date: Thu, 11 May 2023 15:48:45 +0000 (-0400) Subject: net/handshake: handshake_genl_notify() shouldn't ignore @flags X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fc490880e39d86c65ab2bcbd357af1950fa55e48;p=linux.git net/handshake: handshake_genl_notify() shouldn't ignore @flags Reported-by: Dan Carpenter Fixes: 3b3009ea8abb ("net/handshake: Create a NETLINK service for handling handshake requests") Reviewed-by: Simon Horman Signed-off-by: Chuck Lever Signed-off-by: Jakub Kicinski --- diff --git a/net/handshake/netlink.c b/net/handshake/netlink.c index 16a4bde648bac..1086653e1fada 100644 --- a/net/handshake/netlink.c +++ b/net/handshake/netlink.c @@ -48,7 +48,7 @@ int handshake_genl_notify(struct net *net, const struct handshake_proto *proto, proto->hp_handler_class)) return -ESRCH; - msg = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL); + msg = genlmsg_new(GENLMSG_DEFAULT_SIZE, flags); if (!msg) return -ENOMEM;