lxcsu proc bug fix
[lxc-userspace.git] / setns.c
diff --git a/setns.c b/setns.c
index fded30b..7d82d53 100644 (file)
--- a/setns.c
+++ b/setns.c
@@ -33,11 +33,21 @@ static PyObject *
 proc_mount(PyObject *self, PyObject *args)
 {
     int sts; 
-    sts = mount("none","/proc","procfs",0,NULL);
+    sts = mount("none","/proc","proc",0,NULL);
 
     return Py_BuildValue("i", sts);
 }
 
+static PyObject *
+proc_umount(PyObject *self, PyObject *args)
+{
+    int sts; 
+    sts = umount("/proc");
+
+    return Py_BuildValue("i", sts);
+
+}
+
 static PyObject *
 chcontext(PyObject *self, PyObject *args)
 {
@@ -66,6 +76,7 @@ out:
 static PyMethodDef SetnsMethods[] =
 {
          {"proc_mount", proc_mount, METH_VARARGS, "Mount a volume via the mount system call."},
+         {"proc_umount", proc_umount, METH_VARARGS, "Umount a volume via the umount system call."},
          {"chcontext", chcontext, METH_VARARGS, "Switch into an lxc container."},
          {"chfscontext", chfscontext, METH_VARARGS, "Switch into an lxc container."},
               {NULL, NULL, 0, NULL}