Skip to content

Commit

Permalink
SGI UV: TLB shootdown using broadcast assist unit, fix
Browse files Browse the repository at this point in the history
fix:

arch/x86/kernel/tlb_uv.c: In function ‘uv_table_bases_init':
arch/x86/kernel/tlb_uv.c:612: error: ‘bau_tabsp' undeclared (first use in this function)
arch/x86/kernel/tlb_uv.c:612: error: (Each undeclared identifier is reported only once
arch/x86/kernel/tlb_uv.c:612: error: for each function it appears in.)

Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Jul 8, 2008
1 parent b4c286e commit d400524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kernel/tlb_uv.c
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ static struct bau_control * __init uv_table_bases_init(int blade, int node)

uv_bau_table_bases[blade] = bau_tabp;

return bau_tabsp;
return bau_tabp;
}

/*
Expand Down

0 comments on commit d400524

Please sign in to comment.