X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Futils%2Fmount_utils_ldiskfs.c;h=2c41df3a39bbd926245a9d2999b4112290f1355b;hp=7d6e0f66653251738a98f2425055f8f4c976fde4;hb=107bf3389aed435c7148463817984af1a22200e7;hpb=d10200a80770f0029d1d665af954187b9ad883df diff --git a/lustre/utils/mount_utils_ldiskfs.c b/lustre/utils/mount_utils_ldiskfs.c index 7d6e0f6..2c41df3 100644 --- a/lustre/utils/mount_utils_ldiskfs.c +++ b/lustre/utils/mount_utils_ldiskfs.c @@ -215,7 +215,7 @@ static int is_feature_enabled(const char *feature, const char *devpath) char enabled_features[4096] = ""; int ret = 1; - snprintf(cmd, sizeof(cmd), "%s -R features %s 2>&1", + snprintf(cmd, sizeof(cmd), "%s -c -R features %s 2>&1", DEBUGFS, devpath); /* Using popen() instead of run_command() since debugfs does @@ -306,6 +306,7 @@ int ldiskfs_write_ldd(struct mkfs_opts *mop) fclose(filep); goto out_umnt; } + fsync(filep->_fileno); fclose(filep); out_umnt: @@ -388,6 +389,15 @@ int ldiskfs_read_ldd(char *dev, struct lustre_disk_data *mo_ldd) return ret; } +int ldiskfs_erase_ldd(struct mkfs_opts *mop, char *param) +{ + return 0; +} + +void ldiskfs_print_ldd_params(struct mkfs_opts *mop) +{ + printf("Parameters:%s\n", mop->mo_ldd.ldd_params); +} /* Display the need for the latest e2fsprogs to be installed. make_backfs * indicates if the caller is make_lustre_backfs() or not. */ @@ -1193,16 +1203,20 @@ set_params: return rc; } - snprintf(real_path, sizeof(real_path), "%s/%s", path, - MAX_HW_SECTORS_KB_PATH); - rc = read_file(real_path, buf, sizeof(buf)); - if (rc) { - if (verbose) - fprintf(stderr, "warning: opening %s: %s\n", - real_path, strerror(errno)); - /* No MAX_HW_SECTORS_KB_PATH isn't necessary an - * error for some device. */ - goto subdevs; + if (mop->mo_max_sectors_kb >= 0) { + snprintf(buf, sizeof(buf), "%d", mop->mo_max_sectors_kb); + } else { + snprintf(real_path, sizeof(real_path), "%s/%s", path, + MAX_HW_SECTORS_KB_PATH); + rc = read_file(real_path, buf, sizeof(buf)); + if (rc) { + if (verbose) + fprintf(stderr, "warning: opening %s: %s\n", + real_path, strerror(errno)); + /* No MAX_HW_SECTORS_KB_PATH isn't necessary an + * error for some device. */ + goto subdevs; + } } if (strlen(buf) - 1 > 0) { @@ -1227,14 +1241,15 @@ set_params: * PTLRPC_MAX_BRW_SIZE, but that isn't in a public header. * Note that even though the block layer allows larger values, * setting max_sectors_kb = 32768 causes crashes (LU-6974). */ - if (newval > 16 * 1024) { + if (mop->mo_max_sectors_kb < 0 && newval > 16 * 1024) { newval = 16 * 1024; snprintf(buf, sizeof(buf), "%llu", newval); } oldval = strtoull(oldbuf, &end, 0); /* Don't shrink the current limit. */ - if (oldval != ULLONG_MAX && newval <= oldval) + if (mop->mo_max_sectors_kb < 0 && oldval != ULLONG_MAX && + newval <= oldval) goto subdevs; rc = write_file(real_path, buf); @@ -1308,6 +1323,69 @@ int ldiskfs_label_lustre(struct mount_opts *mop) return rc; } +int ldiskfs_rename_fsname(struct mkfs_opts *mop, const char *oldname) +{ + struct mount_opts opts; + struct lustre_disk_data *ldd = &mop->mo_ldd; + char mntpt[] = "/tmp/mntXXXXXX"; + char *dev; + int ret; + + /* Change the filesystem label. */ + opts.mo_ldd = *ldd; + opts.mo_source = mop->mo_device; + ret = ldiskfs_label_lustre(&opts); + if (ret) { + if (errno != 0) + ret = errno; + fprintf(stderr, "Can't change filesystem label: %s\n", + strerror(ret)); + return ret; + } + + /* Mount this device temporarily in order to write these files */ + if (mkdtemp(mntpt) == NULL) { + if (errno != 0) + ret = errno; + else + ret = EINVAL; + fprintf(stderr, "Can't create temp mount point %s: %s\n", + mntpt, strerror(ret)); + return ret; + } + +#ifdef HAVE_SELINUX + /* + * Append file context to mount options if SE Linux is enabled + */ + if (is_selinux_enabled() > 0) + append_context_for_mount(mntpt, mop); +#endif + + if (mop->mo_flags & MO_IS_LOOP) + dev = mop->mo_loopdev; + else + dev = mop->mo_device; + ret = mount(dev, mntpt, MT_STR(ldd), 0, ldd->ldd_mount_opts); + if (ret) { + if (errno != 0) + ret = errno; + fprintf(stderr, "Unable to mount %s: %s\n", + dev, strerror(ret)); + if (ret == ENODEV) + fprintf(stderr, "Is the %s module available?\n", + MT_STR(ldd)); + goto out_rmdir; + } + + ret = lustre_rename_fsname(mop, mntpt, oldname); + umount(mntpt); + +out_rmdir: + rmdir(mntpt); + return ret; +} + /* Enable quota accounting */ int ldiskfs_enable_quota(struct mkfs_opts *mop) {