Skip to content
Snippets Groups Projects
Commit 28e84fdd authored by Nathan Rutman's avatar Nathan Rutman
Browse files

b=12449

i=nathan
i=scjody
Use friendly hostname in mtab
parent 004d53cb
No related merge requests found
...@@ -141,6 +141,7 @@ static char *convert_hostnames(char *s1) ...@@ -141,6 +141,7 @@ static char *convert_hostnames(char *s1)
sep = *s2; sep = *s2;
*s2 = '\0'; *s2 = '\0';
nid = libcfs_str2nid(s1); nid = libcfs_str2nid(s1);
*s2 = sep; /* back to original string */
if (nid == LNET_NID_ANY) if (nid == LNET_NID_ANY)
goto out_free; goto out_free;
c += snprintf(c, left, "%s%c", libcfs_nid2str(nid), sep); c += snprintf(c, left, "%s%c", libcfs_nid2str(nid), sep);
...@@ -243,7 +244,7 @@ int parse_options(char *orig_options, int *flagp) ...@@ -243,7 +244,7 @@ int parse_options(char *orig_options, int *flagp)
int main(int argc, char *const argv[]) int main(int argc, char *const argv[])
{ {
char default_options[] = ""; char default_options[] = "";
char *source, *target, *ptr; char *usource, *source, *target, *ptr;
char *options, *optcopy, *orig_options = default_options; char *options, *optcopy, *orig_options = default_options;
int i, nargs = 3, opt, rc, flags, optlen; int i, nargs = 3, opt, rc, flags, optlen;
static struct option long_opt[] = { static struct option long_opt[] = {
...@@ -301,7 +302,8 @@ int main(int argc, char *const argv[]) ...@@ -301,7 +302,8 @@ int main(int argc, char *const argv[])
usage(stderr); usage(stderr);
} }
source = convert_hostnames(argv[optind]); usource = argv[optind];
source = convert_hostnames(usource);
target = argv[optind + 1]; target = argv[optind + 1];
ptr = target + strlen(target) - 1; ptr = target + strlen(target) - 1;
while ((ptr > target) && (*ptr == '/')) { while ((ptr > target) && (*ptr == '/')) {
...@@ -309,14 +311,14 @@ int main(int argc, char *const argv[]) ...@@ -309,14 +311,14 @@ int main(int argc, char *const argv[])
ptr--; ptr--;
} }
if (!source) { if (!usource || !source) {
usage(stderr); usage(stderr);
} }
if (verbose) { if (verbose) {
for (i = 0; i < argc; i++) for (i = 0; i < argc; i++)
printf("arg[%d] = %s\n", i, argv[i]); printf("arg[%d] = %s\n", i, argv[i]);
printf("source = %s, target = %s\n", source, target); printf("source = %s (%s), target = %s\n", usource, source, target);
printf("options = %s\n", orig_options); printf("options = %s\n", orig_options);
} }
...@@ -330,17 +332,17 @@ int main(int argc, char *const argv[]) ...@@ -330,17 +332,17 @@ int main(int argc, char *const argv[])
} }
if (!force) { if (!force) {
rc = check_mtab_entry(source, target, "lustre"); rc = check_mtab_entry(usource, target, "lustre");
if (rc && !(flags & MS_REMOUNT)) { if (rc && !(flags & MS_REMOUNT)) {
fprintf(stderr, "%s: according to %s %s is " fprintf(stderr, "%s: according to %s %s is "
"already mounted on %s\n", "already mounted on %s\n",
progname, MOUNTED, source, target); progname, MOUNTED, usource, target);
return(EEXIST); return(EEXIST);
} }
if (!rc && (flags & MS_REMOUNT)) { if (!rc && (flags & MS_REMOUNT)) {
fprintf(stderr, "%s: according to %s %s is " fprintf(stderr, "%s: according to %s %s is "
"not already mounted on %s\n", "not already mounted on %s\n",
progname, MOUNTED, source, target); progname, MOUNTED, usource, target);
return(ENOENT); return(ENOENT);
} }
} }
...@@ -380,14 +382,14 @@ int main(int argc, char *const argv[]) ...@@ -380,14 +382,14 @@ int main(int argc, char *const argv[])
rc = errno; rc = errno;
cli = strrchr(source, ':'); cli = strrchr(usource, ':');
if (cli && (strlen(cli) > 2)) if (cli && (strlen(cli) > 2))
cli += 2; cli += 2;
else else
cli = NULL; cli = NULL;
fprintf(stderr, "%s: mount %s at %s failed: %s\n", progname, fprintf(stderr, "%s: mount %s at %s failed: %s\n", progname,
source, target, strerror(errno)); usource, target, strerror(errno));
if (errno == ENODEV) if (errno == ENODEV)
fprintf(stderr, "Are the lustre modules loaded?\n" fprintf(stderr, "Are the lustre modules loaded?\n"
"Check /etc/modprobe.conf and /proc/filesystems" "Check /etc/modprobe.conf and /proc/filesystems"
...@@ -406,16 +408,16 @@ int main(int argc, char *const argv[]) ...@@ -406,16 +408,16 @@ int main(int argc, char *const argv[])
} }
if (errno == EALREADY) if (errno == EALREADY)
fprintf(stderr, "The target service is already running." fprintf(stderr, "The target service is already running."
" (%s)\n", source); " (%s)\n", usource);
if (errno == ENXIO) if (errno == ENXIO)
fprintf(stderr, "The target service failed to start " fprintf(stderr, "The target service failed to start "
"(bad config log?) (%s). " "(bad config log?) (%s). "
"See /var/log/messages.\n", source); "See /var/log/messages.\n", usource);
if (errno == EIO) if (errno == EIO)
fprintf(stderr, "Is the MGS running?\n"); fprintf(stderr, "Is the MGS running?\n");
if (errno == EADDRINUSE) if (errno == EADDRINUSE)
fprintf(stderr, "The target service's index is already " fprintf(stderr, "The target service's index is already "
"in use. (%s)\n", source); "in use. (%s)\n", usource);
if (errno == EINVAL) { if (errno == EINVAL) {
fprintf(stderr, "This may have multiple causes.\n"); fprintf(stderr, "This may have multiple causes.\n");
if (cli) if (cli)
...@@ -426,14 +428,14 @@ int main(int argc, char *const argv[]) ...@@ -426,14 +428,14 @@ int main(int argc, char *const argv[])
} }
/* May as well try to clean up loop devs */ /* May as well try to clean up loop devs */
if (strncmp(source, "/dev/loop", 9) == 0) { if (strncmp(usource, "/dev/loop", 9) == 0) {
char cmd[256]; char cmd[256];
sprintf(cmd, "/sbin/losetup -d %s", source); sprintf(cmd, "/sbin/losetup -d %s", usource);
system(cmd); system(cmd);
} }
} else if (!nomtab) { } else if (!nomtab) {
rc = update_mtab_entry(source, target, "lustre", orig_options, rc = update_mtab_entry(usource, target, "lustre", orig_options,
0,0,0); 0,0,0);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment