mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
netlink: fix spelling mistake in dump size assert
Commit 2c7bc10d0f ("netlink: add macro for checking dump ctx size")
misspelled the name of the assert as asset, missing an R.
Reported-by: Ido Schimmel <idosch@idosch.org>
Reviewed-by: Ido Schimmel <idosch@nvidia.com>
Link: https://lore.kernel.org/r/20230123222224.732338-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
@@ -263,7 +263,7 @@ struct netlink_callback {
|
||||
};
|
||||
};
|
||||
|
||||
#define NL_ASSET_DUMP_CTX_FITS(type_name) \
|
||||
#define NL_ASSERT_DUMP_CTX_FITS(type_name) \
|
||||
BUILD_BUG_ON(sizeof(type_name) > \
|
||||
sizeof_field(struct netlink_callback, ctx))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user