diff options
author | Andrew Lunn <andrew@lunn.ch> | 2020-09-18 21:11:02 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-09-18 18:17:45 -0700 |
commit | d4602a9f47196dd62deba66ec361b5897f1ae62b (patch) | |
tree | c3720df389760898ab277b698d76040cfc25a28c /include/net/devlink.h | |
parent | e14e05e71d106aef973e2cf100e540d911703a6e (diff) | |
download | linux-d4602a9f47196dd62deba66ec361b5897f1ae62b.tar.gz linux-d4602a9f47196dd62deba66ec361b5897f1ae62b.tar.bz2 linux-d4602a9f47196dd62deba66ec361b5897f1ae62b.zip |
net: devlink: region: Pass the region ops to the snapshot function
Pass the region to be snapshotted to the function performing the
snapshot. This allows one function to operate on numerous regions.
v4:
Add missing kerneldoc for ICE
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/devlink.h')
-rw-r--r-- | include/net/devlink.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/net/devlink.h b/include/net/devlink.h index b68e483d9267..4883dbae7faf 100644 --- a/include/net/devlink.h +++ b/include/net/devlink.h @@ -566,7 +566,9 @@ struct devlink_info_req; struct devlink_region_ops { const char *name; void (*destructor)(const void *data); - int (*snapshot)(struct devlink *devlink, struct netlink_ext_ack *extack, + int (*snapshot)(struct devlink *devlink, + const struct devlink_region_ops *ops, + struct netlink_ext_ack *extack, u8 **data); void *priv; }; |