Linux Container Development
 help / color / mirror / Atom feed
* [Testing CGROUP inside CONTAINER]: BUG#1
@ 2008-12-04  8:14 Rishikesh K. Rajak
       [not found] ` <1228378478.4234.35.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Rishikesh K. Rajak @ 2008-12-04  8:14 UTC (permalink / raw)
  To: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
  Cc: risrajak-xthvdsQ13ZrQT0dZR+AlfA,
	iranna.ankad-xthvdsQ13ZrQT0dZR+AlfA,
	sudhirkumarmalik-xthvdsQ13ZrQT0dZR+AlfA,
	dhavalgiani-xthvdsQ13ZrQT0dZR+AlfA, Balbir Singh

Hi All,

Recently i have started using tool (lxc-0.4.1.tar.gz) for container
creation released by Daniel. I am not sure if inside container, cgroup
support is there or not. If it is not supported till now then here is
the point where we can start to look into it.

Steps executed:

    - create a container : lxc-create -f /etc/lxc-no-netns.conf -n xray
        rishi :~ # cat /etc/lxc-no-netns.conf
            # Container with non-virtualized network
             lxc.utsname = delta
    -  Execute container
        :~ # lxc-execute -n xray /bin/bash
        delta:~ #
    -  Execute the following command inside container
     delta:~ # mkdir /cpu
     delta:~ # mount -t cgroup -ocpu cgroup /cpu

    -   delta:~ # cat /cpu/tasks

    - You can see many zero's has attached with task file inside
container. 

As i can understand cgroup has been mounted inside container so it
should attach the task which is running inside container. Please correct
me if i am wrong here.

Additional info:

rishi:~ # cat /boot/config-2.6.27.7-4-pae | grep CGROUP
CONFIG_CGROUPS=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_CGROUP_NS=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_SCHED=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_CGROUP_MEM_RES_CTLR=y
rishi:~ # cat /boot/config-2.6.27.7-4-pae | grep _NS
CONFIG_CGROUP_NS=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
CONFIG_USER_NS=y
CONFIG_PID_NS=y
CONFIG_NF_CONNTRACK_NETBIOS_NS=m
CONFIG_NSC_FIR=m
CONFIG_BLK_DEV_NS87415=m
CONFIG_SCSI_NSP32=m
CONFIG_PATA_NS87410=m
CONFIG_PATA_NS87415=m
CONFIG_NS83820=m
CONFIG_GAMEPORT_NS558=m
CONFIG_NSC_GPIO=m
CONFIG_TCG_NSC=m
CONFIG_NCPFS_NFS_NS=y
CONFIG_NCPFS_OS2_NS=y
rishi:~ # uname -a
Linux rishi 2.6.27.7-4-pae #1 SMP 2008-11-25 00:02:37 +0100 i686 i686
i386 GNU/Linux
rishi:~ #


- Rishi

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Testing CGROUP inside CONTAINER]: BUG#1
       [not found]     ` <4937DA54.8060801-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
@ 2008-12-04 13:12       ` Rishikesh K. Rajak
  2008-12-04 13:34       ` Dave Hansen
  1 sibling, 0 replies; 5+ messages in thread
From: Rishikesh K. Rajak @ 2008-12-04 13:12 UTC (permalink / raw)
  To: gowrishankar
  Cc: iranna.ankad-xthvdsQ13ZrQT0dZR+AlfA,
	sudhirkumarmalik-xthvdsQ13ZrQT0dZR+AlfA,
	containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	dhavalgiani-xthvdsQ13ZrQT0dZR+AlfA,
	risrajak-xthvdsQ13ZrQT0dZR+AlfA, Balbir Singh

On Thu, 2008-12-04 at 18:55 +0530, gowrishankar wrote:

> Hi Rishi,
> Rishikesh K. Rajak wrote:
> > Hi All,
> >
> > Recently i have started using tool (lxc-0.4.1.tar.gz) for container
> > creation released by Daniel. I am not sure if inside container, cgroup
> > support is there or not. If it is not supported till now then here is
> >   
> > the point where we can start to look into it.
> >
> > Steps executed:
> >
> >     - create a container : lxc-create -f /etc/lxc-no-netns.conf -n xray
> >         rishi :~ # cat /etc/lxc-no-netns.conf
> >             # Container with non-virtualized network
> >              lxc.utsname = delta
> >     -  Execute container
> >         :~ # lxc-execute -n xray /bin/bash
> >         delta:~ #
> >     -  Execute the following command inside container
> >      delta:~ # mkdir /cpu
> >      delta:~ # mount -t cgroup -ocpu cgroup /cpu
> >
> >     -   delta:~ # cat /cpu/tasks
> >
> >     - You can see many zero's has attached with task file inside
> > container. 
> >
> >   
> It is expected behaviour of container, as PIDs in other namespaces will 
> always be shown as 0.
> So here, these 0s are from system ns (probably, as you had only system 
> ns and delta ns).
> I have been trying to fix for "for_each_process" macro related stuff wrt 
> container code, yet I ll check out
> if I am right, as I am also curious now.
> > As i can understand cgroup has been mounted inside container so it
> > should attach the task which is running inside container. Please correct
> >   
> Yes. and it is doing already. Only problem is unwanted 0s. Loot at the 


Hi Gowri,

Yes, the problem is right here i think. Many 0s should not appear, as
inside container only container process should be read.
Not the root's processes.

-Rishi


> bottom of list you get
> while cat. you see numbers other than 0,which are container processes.
> > me if i am wrong here.
> >
> > Additional info:
> >
> > rishi:~ # cat /boot/config-2.6.27.7-4-pae | grep CGROUP
> > CONFIG_CGROUPS=y
> > # CONFIG_CGROUP_DEBUG is not set
> > CONFIG_CGROUP_NS=y
> > CONFIG_CGROUP_DEVICE=y
> > CONFIG_CGROUP_FREEZER=y
> > CONFIG_CGROUP_SCHED=y
> > CONFIG_CGROUP_CPUACCT=y
> > CONFIG_CGROUP_MEM_RES_CTLR=y
> > rishi:~ # cat /boot/config-2.6.27.7-4-pae | grep _NS
> > CONFIG_CGROUP_NS=y
> > CONFIG_UTS_NS=y
> > CONFIG_IPC_NS=y
> > CONFIG_USER_NS=y
> > CONFIG_PID_NS=y
> > CONFIG_NF_CONNTRACK_NETBIOS_NS=m
> > CONFIG_NSC_FIR=m
> > CONFIG_BLK_DEV_NS87415=m
> > CONFIG_SCSI_NSP32=m
> > CONFIG_PATA_NS87410=m
> > CONFIG_PATA_NS87415=m
> > CONFIG_NS83820=m
> > CONFIG_GAMEPORT_NS558=m
> > CONFIG_NSC_GPIO=m
> > CONFIG_TCG_NSC=m
> > CONFIG_NCPFS_NFS_NS=y
> > CONFIG_NCPFS_OS2_NS=y
> > rishi:~ # uname -a
> > Linux rishi 2.6.27.7-4-pae #1 SMP 2008-11-25 00:02:37 +0100 i686 i686
> > i386 GNU/Linux
> > rishi:~ #
> >
> >
> > - Rishi
> > _______________________________________________
> > Containers mailing list
> > Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> > https://lists.linux-foundation.org/mailman/listinfo/containers
> >
> >   
> Thanks for reporting.
> --
> Gowrishankar
> _______________________________________________
> Containers mailing list
> Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linux-foundation.org/mailman/listinfo/containers

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Testing CGROUP inside CONTAINER]: BUG#1
       [not found] ` <1228378478.4234.35.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
@ 2008-12-04 13:25   ` gowrishankar
       [not found]     ` <4937DA54.8060801-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: gowrishankar @ 2008-12-04 13:25 UTC (permalink / raw)
  To: risrajak-xthvdsQ13ZrQT0dZR+AlfA
  Cc: iranna.ankad-xthvdsQ13ZrQT0dZR+AlfA,
	containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	sudhirkumarmalik-xthvdsQ13ZrQT0dZR+AlfA,
	dhavalgiani-xthvdsQ13ZrQT0dZR+AlfA, Balbir Singh

Hi Rishi,
Rishikesh K. Rajak wrote:
> Hi All,
>
> Recently i have started using tool (lxc-0.4.1.tar.gz) for container
> creation released by Daniel. I am not sure if inside container, cgroup
> support is there or not. If it is not supported till now then here is
>   
> the point where we can start to look into it.
>
> Steps executed:
>
>     - create a container : lxc-create -f /etc/lxc-no-netns.conf -n xray
>         rishi :~ # cat /etc/lxc-no-netns.conf
>             # Container with non-virtualized network
>              lxc.utsname = delta
>     -  Execute container
>         :~ # lxc-execute -n xray /bin/bash
>         delta:~ #
>     -  Execute the following command inside container
>      delta:~ # mkdir /cpu
>      delta:~ # mount -t cgroup -ocpu cgroup /cpu
>
>     -   delta:~ # cat /cpu/tasks
>
>     - You can see many zero's has attached with task file inside
> container. 
>
>   
It is expected behaviour of container, as PIDs in other namespaces will 
always be shown as 0.
So here, these 0s are from system ns (probably, as you had only system 
ns and delta ns).
I have been trying to fix for "for_each_process" macro related stuff wrt 
container code, yet I ll check out
if I am right, as I am also curious now.
> As i can understand cgroup has been mounted inside container so it
> should attach the task which is running inside container. Please correct
>   
Yes. and it is doing already. Only problem is unwanted 0s. Loot at the 
bottom of list you get
while cat. you see numbers other than 0,which are container processes.
> me if i am wrong here.
>
> Additional info:
>
> rishi:~ # cat /boot/config-2.6.27.7-4-pae | grep CGROUP
> CONFIG_CGROUPS=y
> # CONFIG_CGROUP_DEBUG is not set
> CONFIG_CGROUP_NS=y
> CONFIG_CGROUP_DEVICE=y
> CONFIG_CGROUP_FREEZER=y
> CONFIG_CGROUP_SCHED=y
> CONFIG_CGROUP_CPUACCT=y
> CONFIG_CGROUP_MEM_RES_CTLR=y
> rishi:~ # cat /boot/config-2.6.27.7-4-pae | grep _NS
> CONFIG_CGROUP_NS=y
> CONFIG_UTS_NS=y
> CONFIG_IPC_NS=y
> CONFIG_USER_NS=y
> CONFIG_PID_NS=y
> CONFIG_NF_CONNTRACK_NETBIOS_NS=m
> CONFIG_NSC_FIR=m
> CONFIG_BLK_DEV_NS87415=m
> CONFIG_SCSI_NSP32=m
> CONFIG_PATA_NS87410=m
> CONFIG_PATA_NS87415=m
> CONFIG_NS83820=m
> CONFIG_GAMEPORT_NS558=m
> CONFIG_NSC_GPIO=m
> CONFIG_TCG_NSC=m
> CONFIG_NCPFS_NFS_NS=y
> CONFIG_NCPFS_OS2_NS=y
> rishi:~ # uname -a
> Linux rishi 2.6.27.7-4-pae #1 SMP 2008-11-25 00:02:37 +0100 i686 i686
> i386 GNU/Linux
> rishi:~ #
>
>
> - Rishi
> _______________________________________________
> Containers mailing list
> Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linux-foundation.org/mailman/listinfo/containers
>
>   
Thanks for reporting.
--
Gowrishankar

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Testing CGROUP inside CONTAINER]: BUG#1
       [not found]     ` <4937DA54.8060801-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
  2008-12-04 13:12       ` Rishikesh K. Rajak
@ 2008-12-04 13:34       ` Dave Hansen
  2008-12-04 13:42         ` Rishikesh K Rajak
  1 sibling, 1 reply; 5+ messages in thread
From: Dave Hansen @ 2008-12-04 13:34 UTC (permalink / raw)
  To: gowrishankar
  Cc: iranna.ankad-xthvdsQ13ZrQT0dZR+AlfA,
	sudhirkumarmalik-xthvdsQ13ZrQT0dZR+AlfA,
	containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	dhavalgiani-xthvdsQ13ZrQT0dZR+AlfA,
	risrajak-xthvdsQ13ZrQT0dZR+AlfA, Balbir Singh

On Thu, 2008-12-04 at 18:55 +0530, gowrishankar wrote:
> It is expected behaviour of container, as PIDs in other namespaces will 
> always be shown as 0.
> So here, these 0s are from system ns (probably, as you had only system 
> ns and delta ns).

I think it is pretty bogus to be showing the 0's.  It is "expected" only
when we got access to a task which we were not supposed to receive.

Rishi, is this any different in behavior if you do the cgroup mount
after creating the container?

-- Dave

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Testing CGROUP inside CONTAINER]: BUG#1
  2008-12-04 13:34       ` Dave Hansen
@ 2008-12-04 13:42         ` Rishikesh K Rajak
  0 siblings, 0 replies; 5+ messages in thread
From: Rishikesh K Rajak @ 2008-12-04 13:42 UTC (permalink / raw)
  To: Dave Hansen
  Cc: Iranna D Ankad, Sudhir Kumar15,
	containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	Dhaval Giani1, Balbir Singh

Dave Hansen <dave-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org> wrote on 12/04/2008 07:04:23 PM:

> On Thu, 2008-12-04 at 18:55 +0530, gowrishankar wrote:
> > It is expected behaviour of container, as PIDs in other namespaces will

> > always be shown as 0.
> > So here, these 0s are from system ns (probably, as you had only system
> > ns and delta ns).
>
> I think it is pretty bogus to be showing the 0's.  It is "expected" only
> when we got access to a task which we were not supposed to receive.
>
> Rishi, is this any different in behavior if you do the cgroup mount
> after creating the container?

Actually i reported the problem when i am doing cgroup mount after creating
container only.
But one thing is very interesting here, if i do this:

mount cgroup on root -> then create container -> cat /cpu/tasks inside
container -> again you can see many zero's which is highly undesirable.

-Rishi
>
> -- Dave
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-12-04 13:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-04  8:14 [Testing CGROUP inside CONTAINER]: BUG#1 Rishikesh K. Rajak
     [not found] ` <1228378478.4234.35.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2008-12-04 13:25   ` gowrishankar
     [not found]     ` <4937DA54.8060801-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2008-12-04 13:12       ` Rishikesh K. Rajak
2008-12-04 13:34       ` Dave Hansen
2008-12-04 13:42         ` Rishikesh K Rajak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox