]> 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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 2 Apr 2012 16:27:21 +0000 (09:27 -0700)
commit7b1e2d3c528c25cdd4691e3f8c1fdc3275e5de96
tree149a5bce052fe4497e199e6ef518f8ea646b3628
parent096e4eafb36436b6ce6e8dc372bc5f6e11804e68
lockd: fix arg parsing for grace_period and timeout.

commit de5b8e8e047534aac6bc9803f96e7257436aef9c upstream.

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.

Signed-off-by: NeilBrown <neilb@suse.de>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/lockd/svc.c