Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 333189
b: refs/heads/master
c: 7297cb6
h: refs/heads/master
i:
  333187: bbdb951
v: v3
  • Loading branch information
Daniel Walter authored and Trond Myklebust committed Oct 1, 2012
1 parent d8f44a7 commit 1f60573
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ee34e13620d0678d420ce50101aaef94ab81fc74
refs/heads/master: 7297cb682acb506ada2e01fbc9b447b04d69936c
4 changes: 2 additions & 2 deletions trunk/fs/nfs/idmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ static int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *re
return 0;
memcpy(buf, name, namelen);
buf[namelen] = '\0';
if (strict_strtoul(buf, 0, &val) != 0)
if (kstrtoul(buf, 0, &val) != 0)
return 0;
*res = val;
return 1;
Expand Down Expand Up @@ -364,7 +364,7 @@ static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *typ
if (data_size <= 0) {
ret = -EINVAL;
} else {
ret = strict_strtol(id_str, 10, &id_long);
ret = kstrtol(id_str, 10, &id_long);
*id = (__u32)id_long;
}
return ret;
Expand Down
4 changes: 2 additions & 2 deletions trunk/fs/nfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ static int nfs_get_option_ul(substring_t args[], unsigned long *option)
string = match_strdup(args);
if (string == NULL)
return -ENOMEM;
rc = strict_strtoul(string, 10, option);
rc = kstrtoul(string, 10, option);
kfree(string);

return rc;
Expand Down Expand Up @@ -2681,7 +2681,7 @@ static int param_set_portnr(const char *val, const struct kernel_param *kp)

if (!val)
return -EINVAL;
ret = strict_strtoul(val, 0, &num);
ret = kstrtoul(val, 0, &num);
if (ret == -EINVAL || num > NFS_CALLBACK_MAXPORTNR)
return -EINVAL;
*((unsigned int *)kp->arg) = num;
Expand Down

0 comments on commit 1f60573

Please sign in to comment.