diff options
Diffstat (limited to 'fs/ceph/root.c')
-rw-r--r-- | fs/ceph/root.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ceph/root.c b/fs/ceph/root.c index 2f790df3f473..16d8f24d9b67 100644 --- a/fs/ceph/root.c +++ b/fs/ceph/root.c @@ -18,7 +18,7 @@ #include <linux/ceph/ceph_root.h> /* linux/net/ipv4/ipconfig.c: trims ip addr off front of name, too. */ -extern __be32 root_nfs_parse_addr(char *name); /*__init*/ +extern __be32 root_parse_addr(char *name); /*__init*/ #define MAXPATHLEN 1024 @@ -89,10 +89,10 @@ static int __init ceph_root_setup(char *line) strlcpy(ceph_root_params, line, sizeof(ceph_root_params)); /* - * Note: root_nfs_parse_addr() removes the server-ip from + * root_parse_addr() removes the server-ip from * ceph_root_params, if it exists. */ - root_server_addr = root_nfs_parse_addr(ceph_root_params); + root_server_addr = root_parse_addr(ceph_root_params); return 1; } |