Skip to content

Commit

Permalink
confile: add clearer for lxc.rootfs.backend
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
  • Loading branch information
Christian Brauner authored and stgraber committed Jul 16, 2017
1 parent 10358a9 commit 4cddfcf
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/lxc/confile.c
Expand Up @@ -124,6 +124,7 @@ static int clr_config_rootfs_options(const char *, struct lxc_conf *);

static int set_config_rootfs_backend(const char *, const char *, struct lxc_conf *);
static int get_config_rootfs_backend(const char *, char *, int, struct lxc_conf *);
static int clr_config_rootfs_backend(const char *, struct lxc_conf *);

static int set_config_rootfs(const char *, const char *, struct lxc_conf *);
static int get_config_rootfs(const char *, char *, int, struct lxc_conf *);
Expand Down Expand Up @@ -230,7 +231,7 @@ static struct lxc_config_t config[] = {
{ "lxc.mount", set_config_fstab, get_config_fstab, clr_config_fstab, },
{ "lxc.rootfs.mount", set_config_rootfs_mount, get_config_rootfs_mount, clr_config_rootfs_mount, },
{ "lxc.rootfs.options", set_config_rootfs_options, get_config_rootfs_options, clr_config_rootfs_options, },
{ "lxc.rootfs.backend", set_config_rootfs_backend, get_config_rootfs_backend, NULL },
{ "lxc.rootfs.backend", set_config_rootfs_backend, get_config_rootfs_backend, clr_config_rootfs_backend, },
{ "lxc.rootfs", set_config_rootfs, get_config_rootfs, clr_config_rootfs, },
{ "lxc.pivotdir", set_config_pivotdir, get_config_pivotdir, NULL },
{ "lxc.utsname", set_config_utsname, get_config_utsname, NULL },
Expand Down Expand Up @@ -2602,10 +2603,6 @@ int lxc_clear_config_item(struct lxc_conf *c, const char *key)
} else if (strcmp(key, "lxc.autodev") == 0) {
c->autodev = 1;

} else if (strcmp(key, "lxc.rootfs.backend") == 0) {
free(c->rootfs.bdev_type);
c->rootfs.bdev_type = NULL;

} else if (strcmp(key, "lxc.seccomp") == 0) {
free(c->seccomp);
c->seccomp = NULL;
Expand Down Expand Up @@ -3803,3 +3800,11 @@ static inline int clr_config_rootfs_options(const char *key, struct lxc_conf *c)
c->rootfs.options = NULL;
return 0;
}

static inline int clr_config_rootfs_backend(const char *key, struct lxc_conf *c)
{
free(c->rootfs.bdev_type);
c->rootfs.bdev_type = NULL;
return 0;
}

0 comments on commit 4cddfcf

Please sign in to comment.