[OpenAFS] FC6-T2 openafs

chas williams - CONTRACTOR chas@cmf.nrl.navy.mil
Fri, 11 Aug 2006 13:05:28 -0400


In message <1155284146.14227.5.camel@heplnw8.pp.rl.ac.uk>,William Murray writes
:
>MODULE_PARM(nfs_server_addr,  "l");
>
>nfs_server_addr is defined in the line above. I suppose that means
>something wrong with MODULE_PARM? But this is frequently used...

in the interest of compatibility, the linux kernel has renamed this
to module_param() and changed the arguments.

module_param(nfs_server_addr, long, 0); 

might work.