[PATCH] fix gcc-3.4 warning in percpu code
From: Rusty Russell <rusty@rustcorp.com.au> It's complaining about: #define per_cpu(var, cpu) ((void)cpu, per_cpu__##var) There are several ways of fixing this, but the simplest is: #define per_cpu(var, cpu) (*((void)cpu, &per_cpu__##var))
Showing
Please register or sign in to comment