]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
use more accurate bdev_type name for rootfs.bdev 938/head
authorSerge Hallyn <serge.hallyn@ubuntu.com>
Sat, 2 Apr 2016 21:08:18 +0000 (16:08 -0500)
committerSerge Hallyn <serge.hallyn@ubuntu.com>
Sat, 2 Apr 2016 21:08:39 +0000 (16:08 -0500)
It'll make future code reading easier.

Signed-off-by: Serge Hallyn <serge.hallyn@ubuntu.com>
src/lxc/bdev/bdev.c
src/lxc/conf.c
src/lxc/conf.h
src/lxc/confile.c

index d57386c2ccbf2827fb86762866c434e8c0d4781a..1114a41a7527958b1c65e186bb931608a5adc91b 100644 (file)
@@ -858,8 +858,8 @@ static const struct bdev_type *bdev_query(struct lxc_conf *conf, const char *src
 {
        int i;
 
-       if (conf->rootfs.bdev)
-               return get_bdev_by_name(conf->rootfs.bdev);
+       if (conf->rootfs.bdev_type)
+               return get_bdev_by_name(conf->rootfs.bdev_type);
 
        for (i = 0; i < numbdevs; i++) {
                int r;
index 98cd38402fbd2b08ebc39b1663bc86cdb7c766c8..ff2bcf33e431c352881716ffc547211c117c5cbc 100644 (file)
@@ -4142,7 +4142,7 @@ void lxc_conf_free(struct lxc_conf *conf)
        free(conf->console.log_path);
        free(conf->console.path);
        free(conf->rootfs.mount);
-       free(conf->rootfs.bdev);
+       free(conf->rootfs.bdev_type);
        free(conf->rootfs.options);
        free(conf->rootfs.path);
        free(conf->logfile);
index 50516fdde863842ab67ef0a61a84accabed22214..2593ce511794bf81eded4d0d4e853fcd84d1c412 100644 (file)
@@ -220,13 +220,13 @@ struct lxc_console {
  * @path       : the rootfs source (directory or device)
  * @mount      : where it is mounted
  * @options    : mount options
- * @bev        : optional backing store type
+ * @bev_type   : optional backing store type
  */
 struct lxc_rootfs {
        char *path;
        char *mount;
        char *options;
-       char *bdev;
+       char *bdev_type;
 };
 
 /*
index 15f2e7bec554b3e856ad955494961a5081d71deb..64cce02f064b9eb60349692ce7c80992cb5b5d1b 100644 (file)
@@ -73,7 +73,7 @@ static int config_fstab(const char *, const char *, struct lxc_conf *);
 static int config_rootfs(const char *, const char *, struct lxc_conf *);
 static int config_rootfs_mount(const char *, const char *, struct lxc_conf *);
 static int config_rootfs_options(const char *, const char *, struct lxc_conf *);
-static int config_rootfs_bdev(const char *, const char *, struct lxc_conf *);
+static int config_rootfs_bdev_type(const char *, const char *, struct lxc_conf *);
 static int config_pivotdir(const char *, const char *, struct lxc_conf *);
 static int config_utsname(const char *, const char *, struct lxc_conf *);
 static int config_hook(const char *, const char *, struct lxc_conf *lxc_conf);
@@ -132,7 +132,7 @@ static struct lxc_config_t config[] = {
        { "lxc.mount",                config_fstab                },
        { "lxc.rootfs.mount",         config_rootfs_mount         },
        { "lxc.rootfs.options",       config_rootfs_options       },
-       { "lxc.rootfs.bdev",          config_rootfs_bdev          },
+       { "lxc.rootfs.bdev",          config_rootfs_bdev_type     },
        { "lxc.rootfs",               config_rootfs               },
        { "lxc.pivotdir",             config_pivotdir             },
        { "lxc.utsname",              config_utsname              },
@@ -1856,7 +1856,7 @@ static int config_rootfs_options(const char *key, const char *value,
        return config_string_item(&lxc_conf->rootfs.options, value);
 }
 
-static int config_rootfs_bdev(const char *key, const char *value,
+static int config_rootfs_bdev_type(const char *key, const char *value,
                               struct lxc_conf *lxc_conf)
 {
        if (!is_valid_bdev_type(value)) {
@@ -1864,7 +1864,7 @@ static int config_rootfs_bdev(const char *key, const char *value,
                return -1;
        }
 
-       return config_string_item(&lxc_conf->rootfs.bdev, value);
+       return config_string_item(&lxc_conf->rootfs.bdev_type, value);
 }
 
 static int config_pivotdir(const char *key, const char *value,