mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
net/smc: allow 16 byte pnetids in netlink policy
Currently, users can only send pnetids with a maximum length of 15 bytes over the SMC netlink interface although the maximum pnetid length is 16 bytes. This patch changes the SMC netlink policy to accept 16 byte pnetids. Signed-off-by: Hans Wippel <hwippel@linux.ibm.com> Signed-off-by: Ursula Braun <ubraun@linux.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
14d22d4d61
commit
ca8dc1334a
@ -27,7 +27,7 @@
|
||||
static struct nla_policy smc_pnet_policy[SMC_PNETID_MAX + 1] = {
|
||||
[SMC_PNETID_NAME] = {
|
||||
.type = NLA_NUL_STRING,
|
||||
.len = SMC_MAX_PNETID_LEN - 1
|
||||
.len = SMC_MAX_PNETID_LEN
|
||||
},
|
||||
[SMC_PNETID_ETHNAME] = {
|
||||
.type = NLA_NUL_STRING,
|
||||
|
Loading…
Reference in New Issue
Block a user