When adding block devices for paritions the devices default to ownership by init_user_ns. Instead assign them to the same namespace as the device for the whole disk.
Signed-off-by: Seth Forshee <seth.fors...@canonical.com> --- block/partition-generic.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/block/partition-generic.c b/block/partition-generic.c index 789cdea05893..7c1c83a072a6 100644 --- a/block/partition-generic.c +++ b/block/partition-generic.c @@ -17,6 +17,7 @@ #include <linux/ctype.h> #include <linux/genhd.h> #include <linux/blktrace_api.h> +#include <linux/user_namesapce.h> #include "partitions/check.h" @@ -325,6 +326,7 @@ struct hd_struct *add_partition(struct gendisk *disk, int partno, pdev->class = &block_class; pdev->type = &part_type; pdev->parent = ddev; + dev_set_ns(pdev, ddev->ns); err = blk_alloc_devt(p, &devt); if (err) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/