commit | b815555df8ede8aca07ff72d3fbe7727a008620e | [log] [tgz] |
---|---|---|
author | Dan Carpenter <dan.carpenter@oracle.com> | Fri Jun 05 12:22:57 2015 +0300 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Jun 08 12:39:01 2015 -0700 |
tree | bace3871e115c4961626cfeaeaf4f76df99ca51c | |
parent | 02b310794b8aa34573ef657b694b8f1f18ef4abf [diff] |
Staging: lustre: ptlrpc: signedness bug in high_priority_ratio_store() We want to store a non-negative int here. The original code had a check for unsigned long less than zero which is a mistake but also casting from a positive long to an int can result in a negative number. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>