diff options
| author | Patrick McHardy <kaber@trash.net> | 2010-04-20 16:02:01 +0200 | 
|---|---|---|
| committer | Patrick McHardy <kaber@trash.net> | 2010-04-20 16:02:01 +0200 | 
| commit | 62910554656cdcd6b6f84a5154c4155aae4ca231 (patch) | |
| tree | dcf14004f6fd2ef7154362ff948bfeba0f3ea92d /arch/sh/kernel/dwarf.c | |
| parent | 22265a5c3c103cf8c50be62e6c90d045eb649e6d (diff) | |
| parent | ab9304717f7624c41927f442e6b6d418b2d8b3e4 (diff) | |
| download | olio-linux-3.10-62910554656cdcd6b6f84a5154c4155aae4ca231.tar.xz olio-linux-3.10-62910554656cdcd6b6f84a5154c4155aae4ca231.zip  | |
Merge branch 'master' of /repos/git/net-next-2.6
Conflicts:
	Documentation/feature-removal-schedule.txt
	net/ipv6/netfilter/ip6t_REJECT.c
	net/netfilter/xt_limit.c
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'arch/sh/kernel/dwarf.c')
| -rw-r--r-- | arch/sh/kernel/dwarf.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/sh/kernel/dwarf.c b/arch/sh/kernel/dwarf.c index bd1c497280a..a8234b2010d 100644 --- a/arch/sh/kernel/dwarf.c +++ b/arch/sh/kernel/dwarf.c @@ -22,6 +22,7 @@  #include <linux/mm.h>  #include <linux/elf.h>  #include <linux/ftrace.h> +#include <linux/slab.h>  #include <asm/dwarf.h>  #include <asm/unwinder.h>  #include <asm/sections.h> @@ -727,7 +728,7 @@ static int dwarf_parse_cie(void *entry, void *p, unsigned long len,  			   unsigned char *end, struct module *mod)  {  	struct rb_node **rb_node = &cie_root.rb_node; -	struct rb_node *parent; +	struct rb_node *parent = *rb_node;  	struct dwarf_cie *cie;  	unsigned long flags;  	int count; @@ -856,7 +857,7 @@ static int dwarf_parse_fde(void *entry, u32 entry_type,  			   unsigned char *end, struct module *mod)  {  	struct rb_node **rb_node = &fde_root.rb_node; -	struct rb_node *parent; +	struct rb_node *parent = *rb_node;  	struct dwarf_fde *fde;  	struct dwarf_cie *cie;  	unsigned long flags;  |