From 247f42d1907dbb16033dcb9a28548c4591af9d67 Mon Sep 17 00:00:00 2001 From: Gioacchino Mazzurco Date: Wed, 28 May 2014 22:44:21 +0200 Subject: [PATCH] macvlan: fix missing reference to device_attr_list At moment macvlan devices ignore options inherited as device like mtu. Thanks to suggestions provided by Felix i have done this patch that fix this iussue by adding the missing reference to device_attr_list in macvlan_attr_list Signed-off-by: Gioacchino Mazzurco --- macvlan.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/macvlan.c b/macvlan.c index 9c03cd8..e5a4891 100644 --- a/macvlan.c +++ b/macvlan.c @@ -44,6 +44,9 @@ static const struct blobmsg_policy macvlan_attrs[__MACVLAN_ATTR_MAX] = { static const struct uci_blob_param_list macvlan_attr_list = { .n_params = __MACVLAN_ATTR_MAX, .params = macvlan_attrs, + + .n_next = 1, + .next = { &device_attr_list }, }; struct macvlan_device { -- 2.11.0