diff options
Diffstat (limited to 'net/tipc/bearer.c')
-rw-r--r-- | net/tipc/bearer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/tipc/bearer.c b/net/tipc/bearer.c index d27f30a9a01d..fd8e4e83f5e0 100644 --- a/net/tipc/bearer.c +++ b/net/tipc/bearer.c | |||
@@ -687,14 +687,14 @@ static int __tipc_nl_add_bearer(struct tipc_nl_msg *msg, | |||
687 | if (!hdr) | 687 | if (!hdr) |
688 | return -EMSGSIZE; | 688 | return -EMSGSIZE; |
689 | 689 | ||
690 | attrs = nla_nest_start(msg->skb, TIPC_NLA_BEARER); | 690 | attrs = nla_nest_start_noflag(msg->skb, TIPC_NLA_BEARER); |
691 | if (!attrs) | 691 | if (!attrs) |
692 | goto msg_full; | 692 | goto msg_full; |
693 | 693 | ||
694 | if (nla_put_string(msg->skb, TIPC_NLA_BEARER_NAME, bearer->name)) | 694 | if (nla_put_string(msg->skb, TIPC_NLA_BEARER_NAME, bearer->name)) |
695 | goto attr_msg_full; | 695 | goto attr_msg_full; |
696 | 696 | ||
697 | prop = nla_nest_start(msg->skb, TIPC_NLA_BEARER_PROP); | 697 | prop = nla_nest_start_noflag(msg->skb, TIPC_NLA_BEARER_PROP); |
698 | if (!prop) | 698 | if (!prop) |
699 | goto prop_msg_full; | 699 | goto prop_msg_full; |
700 | if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, bearer->priority)) | 700 | if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, bearer->priority)) |
@@ -1033,14 +1033,14 @@ static int __tipc_nl_add_media(struct tipc_nl_msg *msg, | |||
1033 | if (!hdr) | 1033 | if (!hdr) |
1034 | return -EMSGSIZE; | 1034 | return -EMSGSIZE; |
1035 | 1035 | ||
1036 | attrs = nla_nest_start(msg->skb, TIPC_NLA_MEDIA); | 1036 | attrs = nla_nest_start_noflag(msg->skb, TIPC_NLA_MEDIA); |
1037 | if (!attrs) | 1037 | if (!attrs) |
1038 | goto msg_full; | 1038 | goto msg_full; |
1039 | 1039 | ||
1040 | if (nla_put_string(msg->skb, TIPC_NLA_MEDIA_NAME, media->name)) | 1040 | if (nla_put_string(msg->skb, TIPC_NLA_MEDIA_NAME, media->name)) |
1041 | goto attr_msg_full; | 1041 | goto attr_msg_full; |
1042 | 1042 | ||
1043 | prop = nla_nest_start(msg->skb, TIPC_NLA_MEDIA_PROP); | 1043 | prop = nla_nest_start_noflag(msg->skb, TIPC_NLA_MEDIA_PROP); |
1044 | if (!prop) | 1044 | if (!prop) |
1045 | goto prop_msg_full; | 1045 | goto prop_msg_full; |
1046 | if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, media->priority)) | 1046 | if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, media->priority)) |