* linux-next: manual merge of the percpu tree with the net tree
@ 2010-02-03 5:38 Stephen Rothwell
2010-02-03 6:20 ` Tejun Heo
0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2010-02-03 5:38 UTC (permalink / raw)
To: Tejun Heo, Rusty Russell, Christoph Lameter, Ingo Molnar
Cc: linux-next, linux-kernel, Alexey Dobriyan, David Miller, netdev,
Linus, Andrew Morton
Hi all,
Today's linux-next merge of the percpu tree got a conflict in
net/ipv6/proc.c between commit 5833929cc2ad2b3064b4fac8c44e293972d240d8
("net: constify MIB name tables") from the net tree and commit
d3f5fa4075414c7754126fbdc7c8fbd3906db7c8 ("percpu: add __percpu sparse
annotations to net") from the percpu tree.
I fixed it up (see below) and can carry the fix as necessary.
Maybe you guys could send Linus a simple one line patch for v2.6.33 that
adds
#define __percpu
to include/linux/compiler.h (unconditionally) and then farm out the
patches that add the __percpu annotations to other maintainers.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
diff --cc net/ipv6/proc.c
index bfe2598,e3744d1..0000000
--- a/net/ipv6/proc.c
+++ b/net/ipv6/proc.c
@@@ -170,8 -170,9 +170,8 @@@ static void snmp6_seq_show_icmpv6msg(st
return;
}
- static void snmp6_seq_show_item(struct seq_file *seq, void **mib,
-static inline void
-snmp6_seq_show_item(struct seq_file *seq, void __percpu **mib,
- struct snmp_mib *itemlist)
++static void snmp6_seq_show_item(struct seq_file *seq, void __percpu **mib,
+ const struct snmp_mib *itemlist)
{
int i;
for (i=0; itemlist[i].name; i++)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: linux-next: manual merge of the percpu tree with the net tree
2010-02-03 5:38 linux-next: manual merge of the percpu tree with the net tree Stephen Rothwell
@ 2010-02-03 6:20 ` Tejun Heo
0 siblings, 0 replies; 3+ messages in thread
From: Tejun Heo @ 2010-02-03 6:20 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Rusty Russell, Christoph Lameter, Ingo Molnar, linux-next,
linux-kernel, Alexey Dobriyan, David Miller, netdev, Linus,
Andrew Morton
Hello,
On 02/03/2010 02:38 PM, Stephen Rothwell wrote:
> Today's linux-next merge of the percpu tree got a conflict in
> net/ipv6/proc.c between commit 5833929cc2ad2b3064b4fac8c44e293972d240d8
> ("net: constify MIB name tables") from the net tree and commit
> d3f5fa4075414c7754126fbdc7c8fbd3906db7c8 ("percpu: add __percpu sparse
> annotations to net") from the percpu tree.
>
> I fixed it up (see below) and can carry the fix as necessary.
>
> Maybe you guys could send Linus a simple one line patch for v2.6.33 that
> adds
>
> #define __percpu
>
> to include/linux/compiler.h (unconditionally) and then farm out the
> patches that add the __percpu annotations to other maintainers.
How about just adding dummy #define __percpu in each tree? I don't
think git will have much problem merging them.
--
tejun
^ permalink raw reply [flat|nested] 3+ messages in thread
* linux-next: manual merge of the percpu tree with the net tree
@ 2010-02-05 4:44 Stephen Rothwell
0 siblings, 0 replies; 3+ messages in thread
From: Stephen Rothwell @ 2010-02-05 4:44 UTC (permalink / raw)
To: Tejun Heo, Rusty Russell, Christoph Lameter, Ingo Molnar
Cc: linux-next, linux-kernel, Arnd Bergmann, David Miller, netdev
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@canb.auug.org.au
From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Fri, 5 Feb 2010 15:29:35 +1100
Subject: [PATCH] percpu: macvlan merge fix
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
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
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-02-05 4:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-03 5:38 linux-next: manual merge of the percpu tree with the net tree Stephen Rothwell
2010-02-03 6:20 ` Tejun Heo
-- strict thread matches above, loose matches on Subject: below --
2010-02-05 4:44 Stephen Rothwell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).