commit | e3ce40cb734f2a0edd51f3a7cda913274dab42ed | [log] [tgz] |
---|---|---|
author | Shivani Bhardwaj <shivanib134@gmail.com> | Fri Oct 16 02:17:20 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Fri Oct 16 22:38:17 2015 -0700 |
tree | 711e1478ce4f1abfbc392489c39a0589e92a7201 | |
parent | fea6fc647b589e5954330f1f0497b6de59b7fe01 [diff] |
Staging: lustre: lproc_ptlrpc: Replace simple_strtol with simple_stroul The variable inst is a __u32 type and hence the function used should be simple_strtoul. Semantic patch used: @@ typedef __u32; __u32 e; @@ e = - simple_strtol + simple_strtoul (...) Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>