diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-12-20 11:07:31 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-12-20 11:07:31 -0800 |
commit | ab65387243f47a7bc11725f733c86bf27248b326 (patch) | |
tree | 0857b074b984b1e1dd70d1cbabe22ee618ccd498 /fs/9p/v9fs.c | |
parent | e6a997eda9f76e83b7820b6e71406a43374b9f0f (diff) | |
parent | f1d9e4586e79e1fc7b26d1c567599a904013f199 (diff) | |
download | op-kernel-dev-ab65387243f47a7bc11725f733c86bf27248b326.zip op-kernel-dev-ab65387243f47a7bc11725f733c86bf27248b326.tar.gz |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs:
fs/9p: change simple_strtol to simple_strtoul
9p: convert d_iname references to d_name.name
9p: Remove potentially bad parameter from function entry debug print.
Diffstat (limited to 'fs/9p/v9fs.c')
-rw-r--r-- | fs/9p/v9fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/v9fs.c b/fs/9p/v9fs.c index 24eb010..332b5ff0 100644 --- a/fs/9p/v9fs.c +++ b/fs/9p/v9fs.c @@ -160,7 +160,7 @@ static int v9fs_parse_options(struct v9fs_session_info *v9ses) v9ses->flags |= V9FS_ACCESS_ANY; else { v9ses->flags |= V9FS_ACCESS_SINGLE; - v9ses->uid = simple_strtol(s, &e, 10); + v9ses->uid = simple_strtoul(s, &e, 10); if (*e != '\0') v9ses->uid = ~0; } |