mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 17:41:50 +00:00
drbd: drbd_nla_check_mandatory(): Need to remove the DRBD_GENLA_F_MANDATORY flag first
We need to remove the flag before checking for valid types. Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
parent
5f9359201b
commit
5084d71d89
1 changed files with 1 additions and 1 deletions
|
@ -158,9 +158,9 @@ static inline int drbd_nla_check_mandatory(int maxtype, struct nlattr *nla)
|
||||||
|
|
||||||
nla_for_each_attr(nla, head, len, rem) {
|
nla_for_each_attr(nla, head, len, rem) {
|
||||||
if (nla->nla_type & DRBD_GENLA_F_MANDATORY) {
|
if (nla->nla_type & DRBD_GENLA_F_MANDATORY) {
|
||||||
|
nla->nla_type &= ~DRBD_GENLA_F_MANDATORY;
|
||||||
if (nla_type(nla) > maxtype)
|
if (nla_type(nla) > maxtype)
|
||||||
return -EOPNOTSUPP;
|
return -EOPNOTSUPP;
|
||||||
nla->nla_type &= ~DRBD_GENLA_F_MANDATORY;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue