mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2024-12-28 16:53:49 +00:00
devlink: introduce devlink_nl_put_u64()
Add devlink_nl_put_u64() that abstracts padding for u64 values. All u64 values are passed with the very same padding option. Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com> Reviewed-by: Jiri Pirko <jiri@nvidia.com> Reviewed-by: Joe Damato <jdamato@fastly.com> Signed-off-by: Przemek Kitszel <przemyslaw.kitszel@intel.com> Link: https://patch.msgid.link/20241023131248.27192-2-przemyslaw.kitszel@intel.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
b8bd8c44a2
commit
da3ee3cd79
@ -181,6 +181,11 @@ devlink_nl_put_handle(struct sk_buff *msg, struct devlink *devlink)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline int devlink_nl_put_u64(struct sk_buff *msg, int attrtype, u64 val)
|
||||
{
|
||||
return nla_put_u64_64bit(msg, attrtype, val, DEVLINK_ATTR_PAD);
|
||||
}
|
||||
|
||||
int devlink_nl_put_nested_handle(struct sk_buff *msg, struct net *net,
|
||||
struct devlink *devlink, int attrtype);
|
||||
int devlink_nl_msg_reply_and_new(struct sk_buff **msg, struct genl_info *info);
|
||||
|
Loading…
Reference in New Issue
Block a user