Lines Matching defs:rootfs
446 DECLARE_ARG(opts->c->lxc_conf->rootfs.mount);
831 struct lxc_rootfs *rootfs;
845 rootfs = &c->lxc_conf->rootfs;
851 if (mkdir(rootfs->mount, 0755) < 0 && errno != EEXIST)
859 if (mount(rootfs->path, rootfs->mount, NULL, MS_BIND, NULL) < 0) {
860 rmdir(rootfs->mount);
894 umount(rootfs->mount);
895 rmdir(rootfs->mount);