]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
lockd: fix arg parsing for grace_period and timeout.
authorNeilBrown <neilb@suse.de>
Tue, 7 Feb 2012 04:35:42 +0000 (15:35 +1100)
committerJ. Bruce Fields <bfields@redhat.com>
Fri, 17 Feb 2012 23:38:51 +0000 (18:38 -0500)
commitde5b8e8e047534aac6bc9803f96e7257436aef9c
treea32c2ccf0e2992f177c0a5db41e6b2b515b603e2
parentcec56c8ff5e28f58ff13041dca7853738ae577a1
lockd: fix arg parsing for grace_period and timeout.

If you try to set grace_period or timeout via a module parameter
to lockd, and do this on a big-endian machine where

   sizeof(int) != sizeof(unsigned long)

it won't work.  This number given will be effectively shifted right
by the difference in those two sizes.

So cast kp->arg properly to get correct result.

Cc: stable@kernel.org
Signed-off-by: NeilBrown <neilb@suse.de>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/lockd/svc.c