From mboxrd@z Thu Jan 1 00:00:00 1970 From: menage-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org Subject: [PATCH 09/29] task containersv11 shared container subsystem group arrays include fix Date: Tue, 11 Sep 2007 12:52:48 -0700 Message-ID: <20070911200146.097780000@menage.corp.google.com> References: <20070911195239.997111000@menage.corp.google.com> Return-path: Content-Disposition: inline; filename=task-containersv11-shared-container-subsystem-group-arrays-include-fix.patch List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: containers-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org Errors-To: containers-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org To: containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org Cc: Andrew Morton , Peter Zijlstra List-Id: containers.vger.kernel.org From: Andrew Morton 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) Cc: Paul Menage Cc: Peter Zijlstra Signed-off-by: Andrew Morton --- 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 _ --