linux-kernel mailing list

FromSubjectsort iconDate
Chuck Short
[PATCH 2/7] ata: blacklist FUJITSU MHW2160BH PL
Reference: https://launchpad.net/bugs/175834 CC: linux-ide@vger.kernel.org Signed-off-by: Chuck Short <zulcss@ubuntu.com> Signed-off-by: Tim Gardner <tim.gardner@canonical.com> Signed-off-by: Ben Collins <ben.collins@canonical.com> --- drivers/ata/libata-core.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index 9bef1a8..2664082 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-cor...
Jan 18, 2:21 pm 2008
Naveen Gupta
Re: [PATCH] cgroup: limit block I/O bandwidth
Here we want to rate limit in block layer, I would think I/O scheduler is the place where we are in much better position to do this kind of limiting. Also we are changing the behavior of application by adding sleeps to it during request submission. Moreover, we will prevent requests from being merged since we won't allow them to be submitted in this case. Since bulk of submission for writes is done in background kernel threads and we throttle based on limits on current, we will end up throttli...
Jan 18, 6:39 pm 2008
David Brownell
[patch/rfc 2.6.24-rc8-git] genirq: partial lockdep fixes
EXPERIMENTAL and incomplete patch to make LOCKDEP behave better in the face of irq chaining, by annotating irqs with a lock_class which can reflect that hierarchy. This version of the patch is incomplete in at least two respects: - There's no spin_lock_irq_nested() primitive, so that locking calls on irq probing (yeech!) paths must ignore the annotations. ==> LOCKDEP feature is evidently missing: spin_lock_irq_nested(lock_ptr, lock_class) - We'd really need new API to declare the ...
Jan 18, 6:29 pm 2008
Jochen Friedrich
[PATCH/RFCv3] [POWERPC] Add support for freescale watchdog t...
If a freescale watchdog device node is present, reset the watchdog while waiting for serial input. Signed-off-by: Jochen Friedrich <jochen@scram.de> --- arch/powerpc/boot/Makefile | 2 +- arch/powerpc/boot/cpm-serial.c | 6 +++ arch/powerpc/boot/cuboot-8xx.c | 1 + arch/powerpc/boot/ops.h | 8 ++++ arch/powerpc/boot/watchdog.c | 81 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 97 insertions(+), 1 deletions(-) create mode 100644 arch/powerpc/boot/wa...
Jan 18, 6:12 pm 2008
Andrew Morton Jan 18, 6:00 pm 2008
Christian Kujau
2.6.24-rc8: possible circular locking dependency detected
Hi, just FYI, upgrading to -rc8 gave the following messages in kern.log in the morning hours, when the backups were run: ======================================================= [ INFO: possible circular locking dependency detected ] 2.6.24-rc8 #2 ------------------------------------------------------- rsync/23295 is trying to acquire lock: (iprune_mutex){--..}, at: [<c017a552>] shrink_icache_memory+0x72/0x220 but task is already holding lock: (&(&ip->i_iolock)->mr_loc...
Jan 18, 5:45 pm 2008
Wim Van Sebroeck
[WATCHDOG] v2.6.24-rc8 patches
Hi Linus, Please pull from 'master' branch of git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git or if master.kernel.org hasn't synced up yet: master.kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git This will update the following files: Documentation/watchdog/watchdog-api.txt | 38 +++++++++++++++++--------------- drivers/watchdog/w83697hf_wdt.c | 4 --- 2 files changed, 22 insertions(+), 20 deletions(-) with these Changes: Author: And...
Jan 18, 5:30 pm 2008
Jeremy Fitzhardinge
CPA self-test failures
When booting under KVM, I get a pile of messages out of the CPA self-test. It makes it to usermode OK though. J Linux version 2.6.24-rc8 (jeremy@ezr) (gcc version 4.1.2 20070925 (Red Hat 4.1.2-33)) #1879 SMP PREEMPT Fri Jan 18 11:58:38 PST 2008 BIOS-provided physical RAM map: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) BIOS-e820: 0000000000100000 - 000000002ff...
Jan 18, 5:12 pm 2008
Andi Kleen
Re: CPA self-test failures
Yes known problem. On some systems the self test interacts badly with the split mappings created by the PAT code I think. I don't have a fix yet. But you can ignore it for now -- should be harmless. Or disable CONFIG_CPA_DEBUG. -Andi --
Jan 18, 5:18 pm 2008
Rusty Russell
[PATCH 1/3] Improve type handling in interrupt handlers
This improves typechecking of interrupt handlers by removing unnecessary (void *) casts and storing handlers in correctly-typed variables. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Cc: Jeff Garzik <jgarzik@pobox.com> Cc: Ash Willis <ashwillis@programmer.net> Cc: linux-pcmcia@lists.infradead.org --- drivers/net/e1000/e1000_main.c | 2 +- drivers/net/e1000e/netdev.c | 2 +- drivers/net/eth16i.c | 2 +- drivers/net/ewrk3.c | 2 +- ...
Jan 18, 4:22 pm 2008
Jeff Garzik
Re: [PATCH 1/3] Improve type handling in interrupt handlers
FWIW, I have been working in this area extensively. Check out the 'irq-cleanups' and 'irq-remove' branches of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/misc-2.6.git NAK the rest. You should be using irq_handler_t for all these. (Coincedentally, doing so makes it easier for me to later on remove the almost-never-used 'irq' argument from all irq handlers) Jeff --
Jan 18, 4:41 pm 2008
Rusty Russell
Re: [PATCH 1/3] Improve type handling in interrupt handlers
Well, these are your drivers, but for mine I dislike the obfuscation. It's not like you can declare the function itself to be an irq_handler_t, so Slightly, but the compiler would tell you if you miss one, so I don't think this is real. Cheers, Rusty. --
Jan 18, 6:11 pm 2008
Jeff Garzik
Re: [PATCH 1/3] Improve type handling in interrupt handlers
The others need to be irq_handler_t because that's the precise type that's being used in each particularly situation. Each time the code re-creates that definition creates a problem for future irq handler changes of any type, really. As I noted, I've fixed all this crap already, and read through each one of those drivers. Jeff --
Jan 18, 6:54 pm 2008
Rusty Russell
[PATCH 2/3] Make IRQ handlers typesafe.
This patch lets interrupt handler functions have their natural type (ie. exactly match the data pointer type); for transition it allows the old irq_handler_t type as well. To do this it uses a gcc extension, cast-to-union, which allows a type to be cast to any type within the union. When used in a wrapper macro, it's a simple way of allowing one of several types. (Some drivers now need to be cleaned up to compile, previous patch). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> ---...
Jan 18, 4:25 pm 2008
Jeff Garzik
Re: [PATCH 2/3] Make IRQ handlers typesafe.
This is ugly and unnecessary. Anything that does not use irq_handler_t is broken and should be fixed (as noted in last email, I think I've covered all this driver work already) And if by definition everything uses irq_handler_t, there is no need for any of this "check_either_type" silliness. Jeff --
Jan 18, 4:43 pm 2008
Rusty Russell
[PATCH 3/3] Makes lguest's irq handler typesafe
Just a trivial example. --- drivers/lguest/lguest_device.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -r 00ab7672f658 drivers/lguest/lguest_device.c --- a/drivers/lguest/lguest_device.c Thu Jan 17 16:54:00 2008 +1100 +++ b/drivers/lguest/lguest_device.c Thu Jan 17 16:59:46 2008 +1100 @@ -179,9 +179,8 @@ static void lg_notify(struct virtqueue * hcall(LHCALL_NOTIFY, lvq->config.pfn << PAGE_SHIFT, 0, 0); } -static irqreturn_t lguest_interrupt(int irq, void *_vq)...
Jan 18, 4:27 pm 2008
Tejun Heo
Re: [PATCH 3/3] Makes lguest's irq handler typesafe
Type safety is good but I doubt this would be worth the complexity. It has some benefits but there's much larger benefit in keeping things in straight C. People know that functions take fixed types and are also familiar with the convention of passing void * for callback arguments. IMHO, staying in line with those common knowledges easily trumps having type checking on interrupt handler. Also, how often do we see a bug where things go wrong because interrupt handler is given the wrong type of ar...
Jan 18, 7:12 pm 2008
Jeff Garzik
Re: [PATCH 3/3] Makes lguest's irq handler typesafe
Ugh. This will be a compatibility nightmare. I don't see how void* is so evil for this, or timers. It's not like there's a huge cost associated with a pointer alias. Jeff --
Jan 18, 4:45 pm 2008
Rusty Russell
Re: [PATCH 3/3] Makes lguest's irq handler typesafe
The compiler checks types, and we should use it (though note that when I typesafed the kthread code I didn't find any bugs, so safety arguments must be muted). The gratuitous casts back and forth are annoying and silly. The compatibility nightmare is one reason for the previous patch (which you True, but this is not about performance. It's about making code simpler and compiler-checkable. Rusty. --
Jan 18, 6:17 pm 2008
Jeff Garzik
[git patches] net driver fixes
Please pull from 'upstream-linus' branch of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git upstream-linus to receive the following updates: Documentation/networking/driver.txt | 5 +- drivers/net/3c515.c | 60 +++++---- drivers/net/Kconfig | 3 - drivers/net/atl1/atl1_main.c | 8 +- drivers/net/bonding/bond_alb.c | 23 ++-- drivers/net/bonding/bond_main.c | 64 +++++++--- drivers/...
Jan 18, 4:17 pm 2008
Jeff Garzik
[git patches] net driver updates for 2.6.25
Please pull from the 'upstream' branch of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git upstream to receive my 2.6.25 net driver queue into davem/net-2.6.25.git: Adam Baker (2): rt2x00: Unconstify rt2x00dev rt2x00: Place mutex around USB register access Adrian Bunk (4): drivers/net/netxen/: cleanups drivers/net/chelsio/: #if 0 unused functions ipg: add __devexit annotation e1000: remove no longer used code for pci read/write cfg ...
Jan 18, 4:17 pm 2008
David Miller
Re: [git patches] net driver updates for 2.6.25
From: Jeff Garzik <jeff@garzik.org> Pulled and pushed back out, thanks Jeff. --
Jan 18, 7:59 pm 2008
Lee Schermerhorn
BUG? 2.6.24-rc*[-mm*] - debugfs subdirs missing on x86_64
I searched around the archives and web and didn't find any reports on this [maybe just missed them?], so I MUST be doing something wrong/stupid. My config [included] may be the culprit. Apologies for the long cc list. I'm copying the kprobes and blktrace maintainers [addresses from MAINTAINERS] to verify that they're NOT seeing this problem. Problem: I see no sub-directories below /sys/kernel/debug on x86_64 even when ad hoc instrumentation [i.e., printk()s] claims that the subdir's and files ...
Jan 18, 4:12 pm 2008
Greg KH
Re: BUG? 2.6.24-rc*[-mm*] - debugfs subdirs missing on x86_64
Have you mounted debugfs on /sys/kernel/debug? Try: mount -t debugfs none /sys/kernel/debug as root and see if the files are present or not. thanks, greg k-h --
Jan 18, 4:19 pm 2008
Lee Schermerhorn
Re: BUG? 2.6.24-rc*[-mm*] - debugfs subdirs missing on x86_64
D'oh! [or something stronger] I KNEW it was something stupid. I thought it strange that there were no reports of something this glaring. That's why I took so long investigating before I finally asked. I've used debugfs+mmtrace on x86_64 in the past and I've had the debugfs mount in my test systems' fstab for so long that I don't even think about it [obviously!]. I moved to a different test system a couple of months ago and apparently brought over an old fstab patch. Sorry for the noise [he s...
Jan 18, 5:13 pm 2008
Glauber de Oliveira ...
[PATCH 0/10] Tree fixes for PARAVIRT
Hi, This small series provides some more fixes towards the goal to have the PARAVIRT selectable for x86_64. After that, just some more small steps are needed. The first fix is not even specific for PARAVIRT, and it's actually preventing the whole tree from booting. --
Jan 18, 1:20 pm 2008
Ingo Molnar
Re: [PATCH 0/10] Tree fixes for PARAVIRT
on CONFIG_EFI, indeed :) Ingo --
Jan 18, 4:32 pm 2008
Ingo Molnar
Re: [PATCH 0/10] Tree fixes for PARAVIRT
but in exchange you broke all of 32-bit with CONFIG_PARAVIRT=y. Which means you did not even build-test it on 32-bit, let alone boot test it... Ingo --
Jan 18, 5:37 pm 2008
Zachary Amsden
Re: [PATCH 0/10] Tree fixes for PARAVIRT
Why are we rushing so much to do 64-bit paravirt that we are breaking working configurations? If the developement is going to be this chaotic, it should be done and tested out of tree until it can stabilize. I do not like having to continuously retest and review the x86 branch because the paravirt-ops are constantly in flux and the 32-bit code keeps breaking. We won't be doing 64-bit paravirt-ops for exactly this reason - is there a serious justification from the performance angle on modern 6...
Jan 18, 5:54 pm 2008
Jeremy Fitzhardinge
Re: [PATCH 0/10] Tree fixes for PARAVIRT
x86.git is out of the mainline tree, and it seems to be working fairly smoothly. I've come to appreciate the "lots of small patches with quick Most of the activity is pure unification, with paravirt being part of that. It doesn't help that it increases the CONFIG_ combinatorial A big part of the rationale is to unify 32 and 64 bit, so that paravirt isn't a gratuitous difference between the two. Also, 32 and 64 bit Xen have almost identical interface requirements, so the work is making ...
Jan 18, 6:31 pm 2008
Ingo Molnar
Re: [PATCH 0/10] Tree fixes for PARAVIRT
what you see is a open feedback cycle conducted on lkml. People send patches for arch/x86, and we tell them if it breaks something. The bug was found before i pushed out the x86.git devel tree (and the fix is below - but this shouldnt matter to you because the bug never hit a public x86.git tree). Ingo Index: linux/include/asm-x86/paravirt.h =================================================================== --- linux.orig/include/asm-x86/paravirt.h +++ linux/include/asm-x86/paravirt.h...
Jan 18, 6:02 pm 2008
Glauber de Oliveira ...
[PATCH 1/10] add missing parameter for lookup_address
lookup_address() receives two parameters, but efi_64.c call is passing only one. It's actually preventing the tree from compiling Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- arch/x86/kernel/efi_64.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/x86/kernel/efi_64.c b/arch/x86/kernel/efi_64.c index f420819..1f8bbd9 100644 --- a/arch/x86/kernel/efi_64.c +++ b/arch/x86/kernel/efi_64.c @@ -45,9 +45,10 @@ static void __init early_mapping_s...
Jan 18, 1:20 pm 2008
Chris Wright
Re: [PATCH 1/10] add missing parameter for lookup_address
Good catch, I know I don't test with CONFIG_EFI=y --
Jan 18, 4:26 pm 2008
Glauber de Oliveira ...
[PATCH 2/10] add stringify header
We use a __stringify construction at paravirt_patch_64.c. It's better practice to include the stringify header directly Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- arch/x86/kernel/paravirt_patch_64.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/x86/kernel/paravirt_patch_64.c b/arch/x86/kernel/paravirt_patch_64.c index cbfc4f3..7d904e1 100644 --- a/arch/x86/kernel/paravirt_patch_64.c +++ b/arch/x86/kernel/paravirt_patch_64.c @@ -1,5 +1...
Jan 18, 1:20 pm 2008
Glauber de Oliveira ...
[PATCH 3/10] provide a native_init_IRQ function to x86_64
x86_64 lacks a native_init_IRQ() function, so we turn the arch's init_IRQ() function into a native construct Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- arch/x86/kernel/i8259_64.c | 4 +++- include/asm-x86/hw_irq_64.h | 1 + 2 files changed, 4 insertions(+), 1 deletions(-) diff --git a/arch/x86/kernel/i8259_64.c b/arch/x86/kernel/i8259_64.c index cba13e0..738517e 100644 --- a/arch/x86/kernel/i8259_64.c +++ b/arch/x86/kernel/i8259_64.c @@ -456,7 +456,9 @@ voi...
Jan 18, 1:20 pm 2008
Glauber de Oliveira ...
[PATCH 4/10] put generic mm_hooks include into PARAVIRT
With PARAVIRT, we actually have arch_{dup,exit}_mmap functions, so we can't include the generic header Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- include/asm-x86/mmu_context_64.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/asm-x86/mmu_context_64.h b/include/asm-x86/mmu_context_64.h index 7e2aa23..ad6dc82 100644 --- a/include/asm-x86/mmu_context_64.h +++ b/include/asm-x86/mmu_context_64.h @@ -7,7 +7,9 @@ #include <asm/pda.h&...
Jan 18, 1:20 pm 2008
Glauber de Oliveira ...
[PATCH 5/10] puts read and write cr8 into pv_cpu_ops
This patch adds room for read and write_cr8 functions back in pv_cpu_ops struct Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- include/asm-x86/paravirt.h | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/include/asm-x86/paravirt.h b/include/asm-x86/paravirt.h index 7ff25c2..3e7ca42 100644 --- a/include/asm-x86/paravirt.h +++ b/include/asm-x86/paravirt.h @@ -101,6 +101,11 @@ struct pv_cpu_ops { unsigned long (*read_cr4)(void); ...
Jan 18, 1:20 pm 2008
Glauber de Oliveira ...
[PATCH 6/10] provide read and write cr8 paravirt hooks
Since the cr8 manipulation functions ended up staying in the tree, they can't be defined just when PARAVIRT is off: In this patch, those functions are defined for the PARAVIRT case too. Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- include/asm-x86/system.h | 30 ++++++++++++++++-------------- 1 files changed, 16 insertions(+), 14 deletions(-) diff --git a/include/asm-x86/system.h b/include/asm-x86/system.h index 692c28c..a33c3f4 100644 --- a/include/asm-x86/system.h ...
Jan 18, 1:20 pm 2008
Glauber de Oliveira ...
[PATCH 7/10] fill pv_cpu_ops structure with cr8 fields
This patch fills in the read and write cr8 fields with their native version Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- arch/x86/kernel/paravirt.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/x86/kernel/paravirt.c b/arch/x86/kernel/paravirt.c index c20b4f8..c67d331 100644 --- a/arch/x86/kernel/paravirt.c +++ b/arch/x86/kernel/paravirt.c @@ -319,6 +319,10 @@ struct pv_cpu_ops pv_cpu_ops = { .read_cr4 = native_read_cr4, .read_c...
Jan 18, 1:20 pm 2008
Glauber de Oliveira ...
[PATCH 8/10] add asm_offset PARAVIRT constants
This patch adds the constant PARAVIRT needs in asm_offsets_64.c Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- arch/x86/kernel/asm-offsets_64.c | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/arch/x86/kernel/asm-offsets_64.c b/arch/x86/kernel/asm-offsets_64.c index 2b32719..494e1e0 100644 --- a/arch/x86/kernel/asm-offsets_64.c +++ b/arch/x86/kernel/asm-offsets_64.c @@ -61,6 +61,20 @@ int main(void) ENTRY(data_offset); BLANK();...
Jan 18, 1:20 pm 2008
Glauber de Oliveira ...
[PATCH 9/10] provide __parainstructions section
This patch adds the __parainstructions section to vmlinux.lds.S. It's needed for the patching system. Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- arch/x86/kernel/vmlinux_64.lds.S | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/arch/x86/kernel/vmlinux_64.lds.S b/arch/x86/kernel/vmlinux_64.lds.S index 5ae8aa8..5e0300f 100644 --- a/arch/x86/kernel/vmlinux_64.lds.S +++ b/arch/x86/kernel/vmlinux_64.lds.S @@ -175,6 +175,14 @@ SECTIONS } ...
Jan 18, 1:20 pm 2008
Sam Ravnborg
Re: [PATCH 9/10] provide __parainstructions section
Are we going to see this for other archs than just x86? If so then please add this to include/asm-generic/vmlinux.lds.h The altinstructions right below is antoehr candidate.. Sam --
Jan 18, 4:41 pm 2008
Jeremy Fitzhardinge
Re: [PATCH 9/10] provide __parainstructions section
In theory other architectures could use a similar mechanism, but for now its x86 specific. J --
Jan 18, 6:47 pm 2008
Glauber de Oliveira ...
[PATCH 10/10] change function orders in paravirt.h
__pmd, pmd_val and set_pud are used before they are defined (as static) We move them a little up in the file, so it doesn't happen. Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- include/asm-x86/paravirt.h | 84 ++++++++++++++++++++++---------------------- 1 files changed, 42 insertions(+), 42 deletions(-) diff --git a/include/asm-x86/paravirt.h b/include/asm-x86/paravirt.h index 3e7ca42..12caaf1 100644 --- a/include/asm-x86/paravirt.h +++ b/include/asm-x86/paravirt.h...
Jan 18, 1:20 pm 2008
Jeremy Fitzhardinge
Re: [PATCH 10/10] change function orders in paravirt.h
Hm, in my original patches I put the #ifdef CONFIG_X86_PAE below the PAGETABLE_LEVELS section. Does that work? Or is that an equivalent transform? --
Jan 18, 4:24 pm 2008
c.house.11 Jan 18, 2:43 pm 2008
ecolbus
Re: Why is the kfree() argument const?
I completely agree with you here. But, unless this page : http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html is not up-to-date anymore, there is no free attribute. Which is quite logical, actually, as such an attribute would be equivalent to simply marking the parameter of the function non-const. That's what I was alluding to, when speaking of a legitimate change (adding attribute malloc to kmalloc()) which would break another part of the kernel. Of course, we can also assume that...
Jan 18, 3:10 pm 2008
Chodorenko Michail
PROBLEM: Celeron Core
I have a laptop "Extensa 5220", with the processor Celeron based on 'core' technology. There is ~ / arch/i386/kernel/cpu/cpufreq/p4-clockmod.c in the kernel source code but there's no line identification of my CPU for apply freqency change need to add a ID line 0х16 "that instead of p4-clockmod, if possible.\n"); switch (c->x86_model) { case 0x0E: /* Core */ + case 0x16: /* Celeron Core */ case 0x0F: /* C...
Jan 18, 3:06 pm 2008
Andi Kleen
Re: PROBLEM: Celeron Core
Note that driver will likely do clock throttling on your CPU. Using that is usually a bad idea because it does not actually safe power. It's only intended to let the CPU cool down in some situations. -Andi --
Jan 18, 5:11 pm 2008
Soeren Sonnenburg
2.6.24-rc8 oops ext3_clear_inode+0x25/0xa0
Dear all, I've just got this oops (causing the machine to hang finally)... Any ideas? Soeren BUG: unable to handle kernel paging request at virtual address 66e88e66 printing eip: c01fac85 *pde = 00000000 Oops: 0002 [#1] PREEMPT SMP Modules linked in: hci_usb hidp rfcomm l2cap bluetooth tun cpufreq_stats coretemp xfrm_user xfrm4_tunnel tunnel4 ipcomp esp4 ah4 aes_generic hfsplus binfmt_misc fuse ebtable_broute bridge llc ebtable_nat ebtable_filter ebtables eeprom applesmc hwmon input_polldev s...
Jan 18, 2:39 pm 2008
previous daytodaynext day
January 17, 2008January 18, 2008January 19, 2008