2.6.31-rc7 : kernel BUG at drivers/rtc/rtc-ps3.c:36!

2009-08-24 Thread Sachin Sant
never tried enabling CONFIG_RTC_DRV_PS3 option before so not sure if this is a new problem or an old one. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [PATCH for 2.6.31] powerpc/ps3: Add missing check for PS3 to rtc-ps3 platform device registration

2009-08-24 Thread Sachin Sant
Geert Uytterhoeven wrote: On non-PS3, we get: | kernel BUG at drivers/rtc/rtc-ps3.c:36! because the rtc-ps3 platform device is registered unconditionally in a kernel with builtin support for PS3. Reported-by: Sachin Sant sach...@in.ibm.com Signed-off-by: Geert Uytterhoeven geert.uytterhoe

Re: [FTRACE] Enabling function_graph causes OOPS

2009-09-09 Thread Sachin Sant
| } 1) | .die() { 1) |.oops_enter() { Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [FTRACE] Enabling function_graph causes OOPS

2009-09-09 Thread Sachin Sant
some crazy crap with it. -- Steve -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev

Re: [FTRACE] Enabling function_graph causes OOPS

2009-09-10 Thread Sachin Sant
Steven Rostedt wrote: On Thu, 2009-09-10 at 11:02 +0530, Sachin Sant wrote: Steven Rostedt wrote: Ah, seems the bug happens to be in the module handling. Does the call back always have .mod_return_to_handler? Yes. Every time it ends up in .mod_return_to_handler BTW

Re: 2.6.31-git5 kernel boot hangs on powerpc

2009-09-17 Thread Sachin Sant
00 01 bl 1ac0 .pcpu_alloc+0x754 1ac4: 60 00 00 00 nop Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: 2.6.31-git5 kernel boot hangs on powerpc

2009-09-19 Thread Sachin Sant
Sachin Sant wrote: Tejun Heo wrote: Ah... sorry about that. Sachin, is it possible for you to build the kernel with debug info and ask gdb where the stalling NIP is in the c file? 6NET: Registered protocol family 10 3BUG: soft lockup - CPU#2 stuck for 61s! [modprobe:1865] 4Modules linked

Re: 2.6.31-git5 kernel boot hangs on powerpc

2009-09-23 Thread Sachin Sant
Sachin Sant wrote: Sachin Sant wrote: Tejun Heo wrote: Ah... sorry about that. Sachin, is it possible for you to build the kernel with debug info and ask gdb where the stalling NIP is in the c file? 6NET: Registered protocol family 10 3BUG: soft lockup - CPU#2 stuck for 61s! [modprobe

Re: 2.6.31-git5 kernel boot hangs on powerpc

2009-09-24 Thread Sachin Sant
Tejun Heo wrote: Can you please apply the attached patch and see whether anything interesting shows up in the kernel log? Thanks Tejun for the debug patch. Attached here are the relevant logs. The only messages related to percpu in the logs are 6PERCPU: Embedded 2 pages/cpu

Re: 2.6.31-git5 kernel boot hangs on powerpc

2009-09-24 Thread Sachin Sant
Tejun Heo wrote: Sachin Sant wrote: Tejun Heo wrote: Can you please apply the attached patch and see whether anything interesting shows up in the kernel log? Thanks Tejun for the debug patch. Attached here are the relevant logs. The only messages related to percpu

Re: 2.6.31-git5 kernel boot hangs on powerpc

2009-09-25 Thread Sachin Sant
-- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - 1:mon c 0 0:mon t [link register ] c016d0d0 .pcpu_alloc+0x8a4/0xae4 [c000da427960] c016d094 .pcpu_alloc+0x868/0xae4

Re: 2.6.31-git5 kernel boot hangs on powerpc

2009-09-25 Thread Sachin Sant
Tejun Heo wrote: Tejun Heo wrote: Hello, Sachin Sant wrote: 4PERCPU: chunk 1 relocating -1 - 18 c000db70fb00 c000db70fb00:c000db70fb00 4PERCPU: relocated c1120320:c1120320 4PERCPU: chunk 1 relocating 18 - 16 c000db70fb00 c1120320

Re: 2.6.31-git5 kernel boot hangs on powerpc

2009-10-05 Thread Sachin Sant
c004bdbc 4182002c beq c004bde8# .memset+0x88/0xfc c004bdc0 f886 std r4,0(r6) At this point R06 contains d7f0. Have attached the xmon log. Thanks -Sachin -- - Sachin Sant IBM Linux Technology

Re: [FTRACE] Enabling function_graph causes OOPS

2009-10-07 Thread Sachin Sant
-- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - diff -Naurp a/arch/powerpc/kernel/entry_64.S b/arch/powerpc/kernel/entry_64.S --- a/arch/powerpc/kernel/entry_64.S 2009-10-06 15:31

[PATCH] Ftrace : fix function_graph tracer OOPS

2009-10-08 Thread Sachin Sant
Enabling function graph causes oops due to usage of LOAD_REG_IMMEDIATE(). As explained by Ben the usage of LOAD_REG_IMMEDIATE generates relocs that are not supported when CONFIG_RELOCATABLE is set. Switch to LOAD_REG_ADDR(). Signed-off-by : Sachin Sant sach...@in.ibm.com --- Enabling function

[RESEND][PATCH]Ftrace - fix function_graph tracer OOPS

2009-10-09 Thread Sachin Sant
(). Signed-off-by : Sachin Sant sach...@in.ibm.com --- diff -Naurp old/arch/powerpc/kernel/entry_64.S new/arch/powerpc/kernel/entry_64.S --- old/arch/powerpc/kernel/entry_64.S 2009-10-08 18:37:44.0 +0530 +++ new/arch/powerpc/kernel/entry_64.S 2009-10-08 18:34:33.0 +0530 @@ -1038,8 +1038,8

Re: [PATCH] powerpc/mm: Fix hang accessing top of vmalloc space

2009-10-13 Thread Sachin Sant
the assembly, we now always do the comparison between vmalloc and ioremap. Signed-off-by; Benjamin Herrenschmidt b...@kernel.crashing.org --- Sachin, can you verify that works for you ? Works great. Thanks Ben. Tested by: Sachin Sant sach...@in.ibm.com Regards -Sachin

Re: [PATCH] Ftrace : fix function_graph tracer OOPS

2009-10-14 Thread Sachin Sant
Steven Rostedt wrote: On Thu, 2009-10-08 at 20:21 +0530, Sachin Sant wrote: Switch to LOAD_REG_ADDR(). Signed-off-by : Sachin Sant sach...@in.ibm.com --- diff -Naurp old/arch/powerpc/kernel/entry_64.S new/arch/powerpc/kernel/entry_64.S --- old/arch/powerpc/kernel/entry_64.S 2009-10-08 18

[powerpc] Next tree Nov 2 : kernel BUG at mm/mmap.c:2135!

2009-11-02 Thread Sachin Sant
= c02f0cb0 xer = 200a trap = 700 3:mon Have attached the boot log. Next tree for 20091030 worked fine. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [powerpc] Next tree Nov 2 : kernel BUG at mm/mmap.c:2135!

2009-11-04 Thread Sachin Sant
Sachin Sant wrote: Today's next tree failed to boot on a POWER 6 box with : [ cut here ] kernel BUG at mm/mmap.c:2135! Oops: Exception in kernel mode, sig: 5 [#2] SMP NR_CPUS=1024 NUMA pSeries Problem exists with today's next as well. Likely cause for this problem

Re: [powerpc] Next tree Nov 2 : kernel BUG at mm/mmap.c:2135!

2009-11-12 Thread Sachin Sant
David Gibson wrote: On Wed, Nov 04, 2009 at 06:08:44PM +0530, Sachin Sant wrote: Sachin Sant wrote: Today's next tree failed to boot on a POWER 6 box with : [ cut here ] kernel BUG at mm/mmap.c:2135! Oops: Exception in kernel mode, sig: 5 [#2] SMP NR_CPUS=1024

Re: [powerpc] Next tree Nov 2 : kernel BUG at mm/mmap.c:2135!

2009-11-13 Thread Sachin Sant
--- Exception: c01 (System Call) at 0fff89a8ff40 SP (fffdf8a2460) is in userspace Have attached the complete boot log. At the time of crash values of mm and mm-nr_ptes were 7exit_mmap(): mm c000fa9f9580 nr_ptes 1 Thanks -Sachin -- - Sachin Sant IBM

Re: Fix bug in pagetable cache cleanup with CONFIG_PPC_SUBPAGE_PROT

2009-11-23 Thread Sachin Sant
. Signed-off-by: David Gibson da...@gibson.dropbear.id.au Thanks David for the patch. With this patch on top of next-20091123 my test machine boots fine. Regards -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore

[-next Nov 25] eHEA driver failure during boot.

2009-11-26 Thread Sachin Sant
-Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org

Re: Fix bug in pagetable cache cleanup with CONFIG_PPC_SUBPAGE_PROT (v2)

2009-12-04 Thread Sachin Sant
-Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org

[Next] CPU Hotplug test failures on powerpc

2009-12-11 Thread Sachin Sant
/?l=linux-kernelm=125802682922299w=2 I will try few more iterations with and without the above patch just to make sure i have the correct results. If someone has a suggestion let me know. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems

Re: [Next] CPU Hotplug test failures on powerpc

2009-12-13 Thread Sachin Sant
Benjamin Herrenschmidt wrote: On Fri, 2009-12-11 at 16:23 +0530, Sachin Sant wrote: While executing cpu_hotplug(from autotest) tests against latest next on a power6 box, the machine locks up. A soft reset shows the following trace Have you heard anything about that one yet or it's

Fix hash_utils_64.c compile errors with DEBUG enabled.

2009-12-13 Thread Sachin Sant
unsigned int’ arch/powerpc/mm/hash_utils_64.c:345: error: format ‘%08x’ expects type ‘unsigned int’, but argument 5 has type ‘long unsigned int’ arch/powerpc/mm/hash_utils_64.c: In function ‘htab_initialize’: ... SNIP ... Signed-off-by: Sachin Sant sach...@in.ibm.com --- diff -Naurp

[RESEND]Fix hash_utils_64.c compile errors with DEBUG enabled.

2009-12-13 Thread Sachin Sant
'unsigned int', but argument 4 has type 'long unsigned int' ... SNIP ... Signed-off-by: Sachin Sant sach...@in.ibm.com --- diff -Naurp a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c --- a/arch/powerpc/mm/hash_utils_64.c 2009-12-14 11:14:01.0 +0530 +++ b/arch

Re: [Next] CPU Hotplug test failures on powerpc

2009-12-14 Thread Sachin Sant
Peter Zijlstra wrote: On Fri, 2009-12-11 at 16:23 +0530, Sachin Sant wrote: While executing cpu_hotplug(from autotest) tests against latest next on a power6 box, the machine locks up. A soft reset shows the following trace cpu 0x0: Vector: 100 (System Reset) at [cc9333d0] pc

Re: [Next] CPU Hotplug test failures on powerpc

2009-12-15 Thread Sachin Sant
. dead_cpu = 1 . nr_cpu_ids = 2 XMON dest_cpu = 0 XMON dest_cpu = 1024 . dead_cpu = 1 . nr_cpu_ids = 2 XMON dest_cpu = 0 Let me know if i should try to record any specific value ? Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems

Re: [Next] CPU Hotplug test failures on powerpc

2009-12-15 Thread Sachin Sant
, ,,,,,,,, ,,0002 XMON dest_cpu = 1 hope i got the data correct. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [Next] CPU Hotplug test failures on powerpc

2009-12-15 Thread Sachin Sant
for SMP and UP case */ set_cpu_online(cpu, true); + set_cpu_active(cpu, true); set_cpu_present(cpu, true); set_cpu_possible(cpu, true); } -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore

Re: [Next] CPU Hotplug test failures on powerpc

2009-12-15 Thread Sachin Sant
Xiaotian Feng wrote: Does this testcase hotplug cpu 0 off? No, i don't think so. It skips cpu0 during online/offline process. thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [Next] CPU Hotplug test failures on powerpc

2009-12-15 Thread Sachin Sant
Xiaotian Feng wrote: On Wed, Dec 16, 2009 at 2:41 PM, Sachin Sant sach...@in.ibm.com wrote: Xiaotian Feng wrote: Does this testcase hotplug cpu 0 off? No, i don't think so. It skips cpu0 during online/offline process. Then how could this happen ? Looks like cpu 0

Next 12 : arch/powerpc/sysdev/axonram build failure

2009-03-12 Thread Sachin Sant
-- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo

Re: 2.6.29-rc7-git2 : crash in kmem_list3_init()

2009-03-12 Thread Sachin Sant
to find a solution for this issue ? Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc

Re: Next 12 : arch/powerpc/sysdev/axonram build failure

2009-03-12 Thread Sachin Sant
...@ellerman.id.au --- Yup that works. Thanks. Regards -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing

Re: Next March 25: Boot failure on powerpc [recursive locking detected]

2009-03-26 Thread Sachin Sant
Sachin Sant wrote: Today's next failed to boot on a powerpc box (Power6 blade IBM,7998-61X) with following recursive locking message. = [ INFO: possible recursive locking detected ] 2.6.29-next-20090325 #1 After bisecting the failure seems

[ppc64] 2.6.29-git7 : offlining a cpu causes an exception

2009-03-31 Thread Sachin Sant
-Sachin [1] - CPU Hotplug test which is part of LTP. -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - 6Phyp-dump disabled at boot time. 6Using pSeries machine description. 7Page orders

Re: [ppc64] 2.6.29-git7 : offlining a cpu causes an exception

2009-04-01 Thread Sachin Sant
Benjamin Herrenschmidt wrote: On Tue, 2009-03-31 at 14:57 +0530, Sachin Sant wrote: While executing CPU HotPlug[1] tests i observed that during every cpu offline process an exception is thrown. Looks like a BUG_ON() to me... can you look at what other messages just before that ? I

[Patch next] powerpc: pseries/dtl.c should include asm/firmware.h

2009-04-01 Thread Sachin Sant
(first use in this function) arch/powerpc/platforms/pseries/dtl.c:238: error: (Each undeclared identifier is reported only once arch/powerpc/platforms/pseries/dtl.c:238: error: for each function it appears in.) Signed-off-by : Sachin Sant sach...@in.ibm.com --- * Fixes the following build error

2.6.29-git12 : lockdep warning

2009-04-05 Thread Sachin Sant
] [c0008554] syscall_exit+0x0/0x40 Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc

[2.6.30-rc1] Crash in .hpte_need_flush with hugetlbfs test[shm-fork]

2009-04-08 Thread Sachin Sant
-- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - 72 bind 65536). 6TCP reno registered. 6NET: Registered protocol family 1. 6Unpacking initramfs... done. 7irq: irq 655360 on host null mapped

[CFQ/OOPS] rb_erase with April 9 next tree

2009-04-09 Thread Sachin Sant
= 0001 trap = 300 dar = 0010 dsisr = 4000 On subsequent reboots, i observed similar oops during bootup. I have attached the oops message here. Let me know if i can provide any other information. Thanks -Sachin -- - Sachin Sant IBM Linux

Re: [CFQ/OOPS] rb_erase with April 9 next tree

2009-04-10 Thread Sachin Sant
); + RB_CLEAR_NODE(cfqq-p_node); INIT_LIST_HEAD(cfqq-fifo); atomic_set(cfqq-ref, 0); Yes. The above patch fixed this oops. Thanks Regards -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs

Re: [ppc64] 2.6.29-git7 : offlining a cpu causes an exception

2009-04-15 Thread Sachin Sant
Sachin Sant wrote: Sachin Sant wrote: Benjamin Herrenschmidt wrote: On Tue, 2009-03-31 at 14:57 +0530, Sachin Sant wrote: While executing CPU HotPlug[1] tests i observed that during every cpu offline process an exception is thrown. Looks like a BUG_ON() to me... can you look at what

Re: [ppc64] 2.6.29-git7 : offlining a cpu causes an exception

2009-04-16 Thread Sachin Sant
cpus without any problem. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev

Next April 24 : BUG: lock held at task exit time!

2009-04-24 Thread Sachin Sant
bytes Complete dmesg attached. Let me know if you need any other info. I will try yesterday's next tree to check if this problem can be recreated. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: Next April 28: boot failure on PowerPC with SLQB

2009-04-29 Thread Sachin Sant
. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org

Re: Next April 28: boot failure on PowerPC with SLQB

2009-04-29 Thread Sachin Sant
don't get any extra information other that what is already reported. Have attached the boot log captured using loglevel=8 mminit_loglevel=4 options. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: Next April 28: boot failure on PowerPC with SLQB

2009-04-30 Thread Sachin Sant
Nick Piggin wrote: On Thu, Apr 30, 2009 at 11:06:36AM +0530, Sachin Sant wrote: Hmm, OK. Can you post the disassembly of your pidmap_init please? Here is the information. Unable to handle kernel paging request for data at address 0x0010 Faulting instruction address

Re: Next April 28: boot failure on PowerPC with SLQB

2009-04-30 Thread Sachin Sant
info at http://vger.kernel.org/majordomo-info.html -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list

[-next Feb 18] PowerPC boot failure (Unknowd ADD relocation :26)

2010-02-18 Thread Sachin Sant
-- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - Using 00825420 bytes for initrd buffer Please wait, loading kernel... Allocated 00f0 bytes for kernel @ 00d0 Elf64 kernel loaded... Loading ramdisk... ramdisk loaded

Re: [-next Feb 18] PowerPC boot failure (Unknowd ADD relocation :26)

2010-02-21 Thread Sachin Sant
Sachin Sant wrote: Yesterday's next failed to boot on various powerpc boxes with following error : NET: Registered protocol family 15 registered taskstats version 1 Freeing unused kernel memory: 640k freed doing fast boot scsi_mod: Unknown ADD relocation: 26 WARNING: Error inserting scsi_mod

Re: [PATCH] powerpc: Fix lwsync feature fixup vs. modules on 64-bit

2010-02-26 Thread Sachin Sant
on my power boxes with it. thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev

[PowerPC] 2.6.33-git11 : Badness at kernel/kprobes.c:264

2010-03-06 Thread Sachin Sant
was introduced by commit 4610ee1d36... kprobes: Introduce generic insn_slot framework Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [PowerPC] 2.6.33-git11 : Badness at kernel/kprobes.c:264

2010-03-08 Thread Sachin Sant
(kprobe_opcode_t)); if (idx = 0 idx slots_per_page(c)) { WARN_ON(kip-slot_used[idx] != SLOT_USED); if (dirty) { -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore

34-rc1-git3 build failure with CGROUP_MEM_RES_CTLR_SWAP=y

2010-03-14 Thread Sachin Sant
-- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

2.6.34-rc2 fails to boot on powerpc

2010-03-20 Thread Sachin Sant
This problem seem to have started with 2.6.34-rc1-git9 (352d4657b23fbd329efccc396000a549e0150907). Haven't yet tried a git bisect. Boot log attached Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [PATCH 4/7] hvc_console: Fix race between hvc_close and hvc_remove

2010-03-26 Thread Sachin Sant
/listinfo/linuxppc-dev -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org

Re: [PATCH 4/7] hvc_console: Fix race between hvc_close and hvc_remove

2010-03-26 Thread Sachin Sant
Amit Shah wrote: On (Fri) Mar 26 2010 [14:43:56], Sachin Sant wrote: And this suggests that hvc_kick() is called before hvc_task is initialised, ie, before hvc_init() is called. Does this help? Hi Amit, I too ran into this issue as reported by Anton. Unfortunately in my case

2.6.34-rc3: Badness at kernel/lockdep.c:2706

2010-04-02 Thread Sachin Sant
] [c0033b20] .kernel_thread+0x54/0x70 Instruction dump: e93e8190 8009 2f80 409e03f8 48280539 6000 2fa3 419e03e8 e93e8198 8009 2f80 409e03d8 0fe0 480003d0 e93e8140 fb9d Uniform Multi-Platform E-IDE driver Thanks -Sachin -- - Sachin

Re: 2.6.34-rc3 : Badness at lib/dma-debug.c:820 during ibmvscsi init

2010-04-02 Thread Sachin Sant
FUJITA Tomonori wrote: On Fri, 02 Apr 2010 10:48:55 +0530 Sachin Sant sach...@in.ibm.com wrote: 2.6.34-rc3 boot on a power5 box produces this badness message during ibmvscsi initialization. ibmvscsi 3003: Client reserve enabled ibmvscsi 3003: sent SRP login ibmvscsi 3003

Re: 2.6.34-rc3: Badness at kernel/lockdep.c:2706

2010-04-03 Thread Sachin Sant
Eric W. Biederman wrote: Could you try the fix Wolfram Sang sent to linux-kernel yesterday? Yes that fixed the issue for me. Thanks Eric. Regards -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [PATCH 4/7] hvc_console: Fix race between hvc_close and hvc_remove

2010-04-06 Thread Sachin Sant
); - if (hp-ops-notifier_del) hp-ops-notifier_del(hp, hp-data); -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [-next April 8] eHEA driver failure on powerpc

2010-04-09 Thread Sachin Sant
Sachin Sant wrote: With today's next release, eHEA network interface on couple of power6 boxes fails to initialize. # modprobe ehea IBM eHEA ethernet device driver (Release EHEA_0102) alloc irq_desc for 256 on node 0 alloc kstat_irqs on node 0 irq: irq 590080 on host null mapped to virtual

-next Apr 30: OOPS during eHEA driver initialization

2010-04-30 Thread Sachin Sant
389f0040 4bfffdbd 7c63e838 7c7d07b4 2fbd 409e0030 3bff00c8 881f 2f80 409eff60 881f0020 ---[ end trace cb522a034d760fb8 ]--- next-20100428 was OK. Will try to bisect. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology

Re: -next Apr 30: OOPS during eHEA driver initialization

2010-04-30 Thread Sachin Sant
Sachin Sant wrote: With today's next eHEA drivers fails to initialize. If i revert the following patch eHEA network interface is initialized properly. commit cebfe0b6709abdab997c1a00499d67efa32ee1f0 drivercore: Add of_match_table to the common device drivers Thanks -Sachin IBM eHEA

Re: -next Apr 30: OOPS during eHEA driver initialization

2010-05-01 Thread Sachin Sant
Grant Likely wrote: On Fri, Apr 30, 2010 at 11:35 AM, Grant Likely grant.lik...@secretlab.ca wrote: On Fri, Apr 30, 2010 at 11:27 AM, Sachin Sant sach...@in.ibm.com wrote: Sachin Sant wrote: With today's next eHEA drivers fails to initialize. If i revert the following

2.6.35-rc2 : OOPS with LTP memcg regression test run.

2010-06-06 Thread Sachin Sant
e96d0040 e93b 7ce95a14 7fe9582a 2fbf 419e0014 e81b001a 7c1f002a 7c09592a 481c 7f46d378 ---[ end trace f24cb0cb5729d2bb ]--- And few more of these. Previous snapshot release 2.6.35-rc1-git5(6c5de280b6...) was good. Thanks -Sachin -- - Sachin Sant IBM Linux

Re: 2.6.35-rc2 : OOPS with LTP memcg regression test run.

2010-06-10 Thread Sachin Sant
that the problem goes away after applying the commit 386f40c. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc

[PowerPC] Next May 8 boot failure: OOPS during ibmveth module init

2009-05-08 Thread Sachin Sant
695e9dc0c5a9da30 ]--- attempt to access beyond end of device Next May 7 with same config boots fine. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - boot: next Using

Next May 11 : BUG during scsi initialization

2009-05-11 Thread Sachin Sant
$file I have attached the dmesg log here. Let me know if any other information is required. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - Using 007bc904 bytes

Re: Next May 11 : BUG during scsi initialization

2009-05-11 Thread Sachin Sant
Matthew Wilcox wrote: On Mon, May 11, 2009 at 05:16:10PM +0530, Sachin Sant wrote: Today's Next tree failed to boot on a Power6 box with following BUG : This doesn't actually appear to be a SCSI bug ... it looks like SCSI tried to allocate memory and things went wrong in the memory

Re: Next May 11 : BUG during scsi initialization

2009-05-11 Thread Sachin Sant
tests with SLQB. Any ideas, Nick? Yeah so the problem seems to be with SLQB. I was able to boot Next 11 with SLUB on the same machine. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: Next May 11 : BUG during scsi initialization

2009-05-11 Thread Sachin Sant
Matthew Wilcox wrote: On Mon, May 11, 2009 at 09:49:55PM +0530, Sachin Sant wrote: Yeah so the problem seems to be with SLQB. I was able to boot Next 11 with SLUB on the same machine. Is it 100% reproducable with SLQB? Our errors were fairly hard to tickle on demand. Yes. I am

Re: [PowerPC] Next May 8 boot failure: OOPS during ibmveth moduleinit

2009-05-11 Thread Sachin Sant
Jiri Pirko wrote: Fri, May 08, 2009 at 09:57:22PM CEST, da...@davemloft.net wrote: From: Sachin Sant sach...@in.ibm.com Date: Fri, 08 May 2009 18:22:48 +0530 Todays Next failed to boot on a Power6 JS22 blade with following oops. Jiri, I suspect this might be your address list

Re: Next May 11 : BUG during scsi initialization

2009-05-14 Thread Sachin Sant
information on this. I have been able to recreate this issue consistently. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: Next May 11 : BUG during scsi initialization

2009-05-14 Thread Sachin Sant
-- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - Using 007b9f91 bytes for initrd buffer Please wait, loading kernel... Allocated 00c0 bytes for kernel @ 0230 Elf64 kernel loaded... Loading

[FTRACE] 2.6.30-rc6-git5 : Badness at kernel/trace/ftrace.c:444

2009-05-20 Thread Sachin Sant
to virtual irq 16 Observed similar problem with git4 as well. This doesn't seem to be a widespread problem and currently observing this on one out of 3 power6 machines. Complete dmesg and .config(gzipped) attached. Thanks -Sachin -- - Sachin Sant IBM Linux

[Powerpc/SLQB] Next June 06 : BUG during scsi initialization

2009-06-05 Thread Sachin Sant
Sachin Sant wrote: Today's Next tree failed to boot on a Power6 box with following BUG : BUG: spinlock bad magic on CPU#1, modprobe/63 Unable to handle kernel paging request for data at address 0xc994838 Faulting instruction address: 0xc035f5a8 Oops: Kernel access of bad area, sig

Re: [OOPS] hugetlbfs tests with 2.6.30-rc8-git1

2009-06-05 Thread Sachin Sant
):PASS mmap-cow 19 20 (32):PASS mmap-cow 19 20 (64):PASS set shmmax limit to 335544320 shm-fork 10 10 (32):PASS shm-fork 10 10 (64):PASS shm-fork 10 20 (32): shm-fork was executed when the oops occurred. Thanks -Sachin -- - Sachin Sant IBM Linux

Re: [OOPS] hugetlbfs tests with 2.6.30-rc8-git1

2009-06-06 Thread Sachin Sant
-- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - shm-fork 10 10 (64):PASS shm-fork 10 20 (32):cpu 0x1: Vector: 300 (Data Access) at [c000faa13490] pc: c0038240: .hpte_need_flush+0x1bc/0x2d8 lr

Re: [Powerpc/SLQB] Next June 06 : BUG during scsi initialization

2009-06-08 Thread Sachin Sant
Pekka J Enberg wrote: Hi Sachin, On Fri, 5 Jun 2009, Sachin Sant wrote: I can still recreate this bug on a Power 6 hardware with today's next tree. I can recreate this problem at will. Let me know if i can help in debugging this problem. Can you please reproduce the issue

Re: [Powerpc/SLQB] Next June 06 : BUG during scsi initialization

2009-06-11 Thread Sachin Sant
-- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo

[PowerPC] 2.6.30-git3 build break : perf counters

2009-06-11 Thread Sachin Sant
type ..SNIP.. Porbably because of commit 526e9a09d2e2dcb6c75c68710465678bb647e5fe Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [Powerpc/SLQB] Next June 06 : BUG during scsi initialization

2009-06-12 Thread Sachin Sant
-Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https

Re: [PowerPC] 2.6.30-git3 build break : perf counters

2009-06-12 Thread Sachin Sant
/powerpc/kernel/power7-pmu.c:298: error: array index in initializer not of integer type ..SNIP.. Reported-by: Sachin Sant sach...@in.ibm.com Signed-off-by: Jaswinder Singh Rajput jaswinderraj...@gmail.com --- Yes this fixed the build error. Thanks -Sachin

2.6.30-git3 boot failure on PowerPC

2009-06-12 Thread Sachin Sant
config. I came across the following mail from Ben so this could be a know issue. http://lists.ozlabs.org/pipermail/linuxppc-dev/2009-June/073102.html Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

Re: [OOPS] hugetlbfs tests with 2.6.30-rc8-git1

2009-06-14 Thread Sachin Sant
Benjamin Herrenschmidt wrote: On Fri, 2009-06-05 at 16:59 +0530, Sachin Sant wrote: While executing Hugetlbfs tests against 2.6.30-rc8-git1 on a Power 6 box observed the following OOPS message. I was able to recreate this with 2.6.30-git7. Here is the supporting data. cpu 0x1: Vector: 300

Re: [OOPS] hugetlbfs tests with 2.6.30-rc8-git1

2009-06-15 Thread Sachin Sant
-- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - arch/powerpc/mm/tlb_hash64.o: file format elf64-powerpc Disassembly of section .text: .__flush_tlb_pending

Re: [PATCH] powerpc/mm: Fix potential access to freed pages when using hugetlbfs

2009-06-17 Thread Sachin Sant
...@kernel.crashing.org Thanks for the patch. The machine survived after two days of testing with hugetlbfs tests. Regards -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

[BUG] lib/kernel_lock.c:126 with cgroups regression ltp tests

2009-06-17 Thread Sachin Sant
(); Have attached the cgroups regression test run log. Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - cgroup_regression_test1 PASS : no kernel bug was found /ltp

Re: [BUG] lib/kernel_lock.c:126 with cgroups regression ltp tests

2009-06-17 Thread Sachin Sant
Michael Ellerman wrote: On Wed, 2009-06-17 at 16:21 +0530, Sachin Sant wrote: While executing cgroups regression tests from LTP May 2009 release on a Power6 box came across the following bug. This is with 2.6.30-git10 (300df7dc89cc276377fc020704e34875d5c473b6) Looks like

[PowerPC] Badness at drivers/char/tty_ldisc.c:210 during shutdown

2009-06-18 Thread Sachin Sant
, flags); WARN_ON(ld-refcount); === ... Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India - ___ Linuxppc-dev mailing

Re: [PowerPC] 2.6.30-git14 boot failure with SLAB

2009-06-19 Thread Sachin Sant
Sachin Sant wrote: 2.6.30-git14 (0732f87761dbe417cb6e084b712d07e879e876ef) fails to boot on various PowerPC machines. Here are last few boot messages from a Power6 box. SNIP I will go back and check what changes between git10 and git11 could have caused this boot failure. The offending

Re: [PowerPC] 2.6.30-git14 boot failure with SLAB

2009-06-20 Thread Sachin Sant
.__mutex_lock_slowpath+0x9c/0x1f4 lr = c060abc8 .mutex_lock+0x50/0x70 msr = 80081032 cr = 8422 ctr = 00136f8c xer = 0001 trap = 100 0:mon Let me know if i can provide more information. Thanks -Sachin -- - Sachin Sant IBM Linux

Re: Badness at drivers/char/tty_ldisc.c:210 during shutdown

2009-06-22 Thread Sachin Sant
Sachin Sant wrote: I came across the following badness message during shutdown on a Power6 box. This was with 2.6.30-git12(3fe0344faf7fdcb158bd5c1a9aec960a8d70c8e8) [ cut here ] Badness at drivers/char/tty_ldisc.c:210 The badness message is still present with git18

Re: Badness at drivers/char/tty_ldisc.c:210 during shutdown

2009-07-10 Thread Sachin Sant
what is going on here. This issue can be recreated with 2.6.31-rc2-git4 kernel (34f25476ace556263784ea2f8173e22b25557a13). Thanks -Sachin -- - Sachin Sant IBM Linux Technology Center India Systems and Technology Labs Bangalore, India

  1   2   3   4   >