Hi all, Today's linux-next merge of the percpu tree got a conflict in drivers/net/macvlan.c between commit fc0663d6b5e6d8e9b57f872a644c0aafd82361b7 ("macvlan: allow multiple driver backends") from the net tree and commit e20b68160144bcacbde008b9cf7df4e1544b2507 ("percpu: add __percpu sparse annotations to net drivers") from the percpu tree. The struct that is being modified by the latter commit has been moved by the former into include/linux/if_macvlan.h. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx From: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Date: Fri, 5 Feb 2010 15:29:35 +1100 Subject: [PATCH] percpu: macvlan merge fix Signed-off-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> --- include/linux/if_macvlan.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/linux/if_macvlan.h b/include/linux/if_macvlan.h index 51f1512..f9cb9ba 100644 --- a/include/linux/if_macvlan.h +++ b/include/linux/if_macvlan.h @@ -30,7 +30,7 @@ struct macvlan_dev { struct hlist_node hlist; struct macvlan_port *port; struct net_device *lowerdev; - struct macvlan_rx_stats *rx_stats; + struct macvlan_rx_stats __percpu *rx_stats; enum macvlan_mode mode; int (*receive)(struct sk_buff *skb); int (*forward)(struct net_device *dev, struct sk_buff *skb); -- 1.6.6.1 -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html