diff options
| author | Mike Travis <travis@sgi.com> | 2008-12-31 17:34:16 -0800 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-01-03 18:53:31 +0100 | 
| commit | 7eb19553369c46cc1fa64caf120cbcab1b597f7c (patch) | |
| tree | ef1a3beae706b9497c845d0a2557ceb4d2754998 /net/tipc | |
| parent | 6092848a2a23b660150a38bc06f59d75838d70c8 (diff) | |
| parent | 8c384cdee3e04d6194a2c2b192b624754f990835 (diff) | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-cpumask into merge-rr-cpumask
Conflicts:
	arch/x86/kernel/io_apic.c
	kernel/rcuclassic.c
	kernel/sched.c
	kernel/time/tick-sched.c
Signed-off-by: Mike Travis <travis@sgi.com>
[ mingo@elte.hu: backmerged typo fix for io_apic.c ]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'net/tipc')
| -rw-r--r-- | net/tipc/eth_media.c | 3 | ||||
| -rw-r--r-- | net/tipc/name_table.c | 2 | 
2 files changed, 2 insertions, 3 deletions
| diff --git a/net/tipc/eth_media.c b/net/tipc/eth_media.c index fe43ef7dd7e..f72ba774c24 100644 --- a/net/tipc/eth_media.c +++ b/net/tipc/eth_media.c @@ -243,12 +243,11 @@ static int recv_notification(struct notifier_block *nb, unsigned long evt,  static char *eth_addr2str(struct tipc_media_addr *a, char *str_buf, int str_size)  {  	unchar *addr = (unchar *)&a->dev_addr; -	DECLARE_MAC_BUF(mac);  	if (str_size < 18)  		*str_buf = '\0';  	else -		sprintf(str_buf, "%s", print_mac(mac, addr)); +		sprintf(str_buf, "%pM", addr);  	return str_buf;  } diff --git a/net/tipc/name_table.c b/net/tipc/name_table.c index cd72e22b132..acab41a48d6 100644 --- a/net/tipc/name_table.c +++ b/net/tipc/name_table.c @@ -555,7 +555,7 @@ static struct name_seq *nametbl_find_seq(u32 type)  	struct name_seq *ns;  	dbg("find_seq %u,(%u,0x%x) table = %p, hash[type] = %u\n", -	    type, ntohl(type), type, table.types, hash(type)); +	    type, htonl(type), type, table.types, hash(type));  	seq_head = &table.types[hash(type)];  	hlist_for_each_entry(ns, seq_node, seq_head, ns_list) { | 
