OSDN Git Service

genetlink: add small version of ops
authorJakub Kicinski <kuba@kernel.org>
Fri, 2 Oct 2020 21:49:53 +0000 (14:49 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 3 Oct 2020 02:11:11 +0000 (19:11 -0700)
commit0b588afdd16f9e0b63128dc4bcd002e7f2725fe0
treea3a8b861434b65311b9332016a20749d58324cad
parente5086736969880478abb2ac85ef8757ac6ce45bf
genetlink: add small version of ops

We want to add maxattr and policy back to genl_ops, to enable
dumping per command policy to user space. This, however, would
cause bloat for all the families with global policies. Introduce
smaller version of ops (half the size of genl_ops). Translate
these smaller ops into a full blown struct before use in the
core.

v1:
 - use struct assignment
 - put a full copy of the op in struct genl_dumpit_info
 - s/light/small/

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Reviewed-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/thermal/thermal_netlink.c
include/net/genetlink.h
net/netlink/genetlink.c