From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Menage Subject: [PATCH 09/33] task containersv11 shared container subsystem group arrays include fix Date: Mon, 17 Sep 2007 14:03:16 -0700 Message-ID: <20070917210427.557868000@menage.corp.google.com> References: <20070917210307.116234000@menage.corp.google.com> Return-path: Content-Disposition: inline; filename=task-containersv11-shared-container-subsystem-group-arrays-include-fix.patch Sender: linux-kernel-owner@vger.kernel.org To: akpm@linuxfoundation.org, balbir@linux.vnet.ibm.com, "Serge E. Hallyn" , Cedric Le Goater , "Eric W. Biederman" , Pavel Cc: Nick Piggin , Peter Zijlstra , pj@sgi.com, containers@lists.osdl.org, linux-kernel@vger.kernel.org, Andrew Morton List-Id: containers.vger.kernel.org kernel/cgroup.c: In function 'cgroup_new_inode': kernel/cgroup.c:573: error: variable 'cgroup_backing_dev_info' has initializer but incomplete type kernel/cgroup.c:574: error: unknown field 'capabilities' specified in initializer kernel/cgroup.c:574: error: 'BDI_CAP_NO_ACCT_DIRTY' undeclared (first use in this function) kernel/cgroup.c:574: error: (Each undeclared identifier is reported only once) Signed-off-by: Andrew Morton Signed-off-by: Paul Menage --- kernel/cgroup.c | 1 + 1 file changed, 1 insertion(+) diff -puN kernel/cgroup.c~task-cgroupsv11-shared-cgroup-subsystem-group-arrays-include-fix kernel/cgroup.c --- a/kernel/cgroup.c~task-cgroupsv11-shared-cgroup-subsystem-group-arrays-include-fix +++ a/kernel/cgroup.c @@ -36,6 +36,7 @@ #include #include #include +#include #include #include #include _ --