[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20071213114336.GA5400@linux.vnet.ibm.com>
Date: Thu, 13 Dec 2007 17:13:36 +0530
From: Dhaval Giani <dhaval@...ux.vnet.ibm.com>
To: "Fortier,Vincent [Montreal]" <Vincent.Fortier1@...GC.CA>
Cc: Ingo Molnar <mingo@...e.hu>, Greg KH <gregkh@...e.de>,
Randy Dunlap <randy.dunlap@...cle.com>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-kernel@...r.kernel.org,
Srivatsa Vaddagiri <vatsa@...ux.vnet.ibm.com>,
kay.sievers@...y.org, Balbir Singh <balbir@...ibm.com>,
maneesh@...ibm.com
Subject: Re: 2.6.22.14 oops msg with commvault galaxy ?
Hi Vincent,
Could you please see if the following patch removes the oops due to CFS
sysfs files? (There might still be the other oops due to the floppy
sysfs files)
Ingo, could you please add this patch in your CFS backport to 2.6.22 and
older kernels?
Thanks,
--
kdump showed that the owner field had some junk value which caused
the oops reported at http://lkml.org/lkml/2007/12/10/113 . This
patch sets the value of that field to NULL.
Signed-off-by: Dhaval Giani <dhaval@...ux.vnet.ibm.com>
Signed-off-by: Maneesh Soni <maneesh@...ibm.com>
---
kernel/user.c | 1 +
1 files changed, 1 insertion(+)
Index: linux-2.6.22.13/kernel/user.c
===================================================================
--- linux-2.6.22.13.orig/kernel/user.c
+++ linux-2.6.22.13/kernel/user.c
@@ -145,6 +145,7 @@ ssize_t cpu_shares_store(struct kset *ks
static void user_attr_init(struct subsys_attribute *sa, char *name, int mode)
{
+ sa->attr.owner = NULL;
sa->attr.name = name;
sa->attr.mode = mode;
sa->show = cpu_shares_show;
--
regards,
Dhaval
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists