linux-kernel mailing list

FromSubjectsort iconDate
Pavel Machek
Re: [RFC] Disk shock protection (revisited)
Well... but you can be careful about the syscalls, right? Anyway, active protection is 'best effort' anyway. There's not enough time to park heads if you drop the machine without tilting it first... Well, shit happens. Even notebook with parked harddrive is not guaranteed to survive the fall. Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html -- (english) [ message continues ]
" title="http://www.livejournal.com/~pavelmach...">http://www.livejournal.com/~pavelmach...
Feb 24, 2:03 pm 2008
Miles Bader
Re: Tabs, spaces, indent and 80 character lines
Why do people even respond to these trolls...? -Miles -- Success, n. The one unpardonable sin against one's fellows. --
Feb 24, 11:01 am 2008
Andres Salomon
[PATCH] x86: geode: MSR cleanup
Note that I didn't bother cleaning up the gxfb and lxfb headers wrt MSRs; that's coming in another patch (which is still in progress). From 22b8ddf47f77f01a59afb937779f4c83e9862f9e Mon Sep 17 00:00:00 2001 From: Andres Salomon <dilinger@debian.org> Date: Sun, 24 Feb 2008 13:14:57 -0500 Subject: [PATCH] x86: geode: MSR cleanup This cleans up a few MSR-using drivers in the following manner: - Ensures MSRs are all defined in asm/geode.h, rather than in misc places - Makes the namin...
Feb 24, 7:33 pm 2008
Stephen Neuendorffer
RE: [PATCH] Xilinx: hwicap: cleanup
Actually, it's just the comment that still had the old name.. Fixed it. -Wall reports one unused static: drivers/char/xilinx_hwicap/xilinx_hwicap.c:240: warning: 'hwicap_command_capture' defined but not used I'd intended to leave this in, but I'm thinking it can be done by userspace code using this driver, so I took it out too. In verifying this, I discovered that I had inserted a variable names char *buf'. mutex_lock()) It's not clear to me how to get 'correct' behavior in these fu...
Feb 24, 7:21 pm 2008
Stephen Neuendorffer
[PATCH] [POWERPC] [v2] Xilinx: hwicap: cleanup
Fix some missing __user tags and incorrect section tags. Convert semaphores to mutexes. Make probed_devices re-entrancy and error condition safe. Fix some backwards memcpys. Some other minor cleanups. Use kerneldoc format. [v2] __user char => char __user removed unused hwicap_command_capture Fixed a comment that didn't match the function name fixed argument with 'register' keyword. Signed-off-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com> --- Grant, Since it appears...
Feb 24, 7:34 pm 2008
eeootexjdw Feb 24, 7:15 pm 2008
kckwwgvcqcttv Feb 24, 6:31 pm 2008
Linus Torvalds
Linux 2.6.25-rc3
Ok, it's out there, ready for your enjoyment. As usual, most of the updates are in architecture and drivers, with the dirstat showing about 37% in arch (and that's with rename detection: there's some file movement in arch/xtensa that would bring it up to 43% if you looked at it as a traditional diff) and almost 50% in drivers. Much of the include file stuff is also architecture-related updates. The driver updates are mostly fairly spread out, but some of it comes from a couple of new dri...
Feb 24, 6:16 pm 2008
S.Çağlar
Re: Linux 2.6.25-rc3
Hi; -rc3 still fails for this [1] config ERROR: "LGUEST_PAGES_guest_gdt_desc" [drivers/lguest/lg.ko] undefined! ERROR: "LGUEST_PAGES_host_gdt_desc" [drivers/lguest/lg.ko] undefined! ERROR: "LGUEST_PAGES_host_cr3" [drivers/lguest/lg.ko] undefined! ERROR: "LGUEST_PAGES_regs" [drivers/lguest/lg.ko] undefined! ERROR: "LGUEST_PAGES_host_idt_desc" [drivers/lguest/lg.ko] undefined! ERROR: "LGUEST_PAGES_guest_gdt" [drivers/lguest/lg.ko] undefined! ERROR: "LGUEST_PAGES_host_sp" [drivers/lguest/lg.ko] u...
Feb 24, 7:29 pm 2008
Zdenek Kabelac
latest commit on thinkpad_acpi.c 6c231bd5eb07 shows warning
Hi Commit 6c231bd5eb07ce546517019f334652b9ecfc329a generate this warning: drivers/misc/thinkpad_acpi.c: In function 'tpacpi_input_send_tabletsw': include/linux/input.h:1290: warning: 'state' is used uninitialized in this function drivers/misc/thinkpad_acpi.c:1191: note: 'state' was declared here drivers/misc/thinkpad_acpi.c: In function 'hotkey_tablet_mode_show': drivers/misc/thinkpad_acpi.c:1723: warning: 's' is used uninitialized in this function I assume typo here thinkpad_acpi.c:10724 h...
Feb 24, 6:07 pm 2008
Paolo Ciarrocchi
[PATCH 0/2] x86: 2 Coding Style patches
This email didn't reach lkml... Hi Ingo, two more coding style patches. Compile tested, against x86/testing 4a6af5bbbd74dd812224900d3468b008d117da29 Paolo Ciarrocchi (2): x86: Coding Style fixes to arch/x86/power/cpu_32.c x86: Coding Style fixes to arch/x86/kernel/cpu/common.c arch/x86/kernel/cpu/common.c | 105 ++++++++++++++++++++++------------------- arch/x86/power/cpu_32.c | 41 +++++++++------- 2 files changed, 79 insertions(+), 67 deletions(-) Ciao, ...
Feb 24, 5:19 pm 2008
Paolo Ciarrocchi
[PATCH 3/3] IDE: Coding Style fixes to drivers/ide/pci/cy82c...
Before: total: 34 errors, 14 warnings, 456 lines checked After: total: 0 errors, 8 warnings, 456 lines checked Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com> --- drivers/ide/pci/cy82c693.c | 74 ++++++++++++++++++++++---------------------- 1 files changed, 37 insertions(+), 37 deletions(-) diff --git a/drivers/ide/pci/cy82c693.c b/drivers/ide/pci/cy82c693.c index 833fa4d..08eab7e 100644 --- a/drivers/ide/pci/cy82c693.c +++ b/drivers/ide/pci/cy82c693.c @@ -6,7 +6,...
Feb 24, 5:11 pm 2008
Paolo Ciarrocchi
[PATCH 2/3] IDE: Replace __FUNCTION__ with __func__
Applies on top of the previous patch. Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com> --- drivers/ide/ide-cd.c | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c index 3181e71..76317ab 100644 --- a/drivers/ide/ide-cd.c +++ b/drivers/ide/ide-cd.c @@ -650,7 +650,7 @@ int ide_cd_check_ireason(ide_drive_t *drive, int len, int ireason, int rw) /* Whoops... */ printk(KERN_ERR "%s: %s: wrong ...
Feb 24, 5:11 pm 2008
Paolo Ciarrocchi
[PATCH 1/3] IDE: Coding Style fixes to drivers/ide/ide-cd.c
Before: total: 43 errors, 66 warnings, 2183 lines checked After: total: 0 errors, 36 warnings, 2192 lines checked I didn't (and I don't plan to) fix the warnings: WARNING: line over 80 characters Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com> --- drivers/ide/ide-cd.c | 245 ++++++++++++++++++++++++++------------------------ 1 files changed, 127 insertions(+), 118 deletions(-) diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c index 546f436..3181e71 100644 --...
Feb 24, 5:10 pm 2008
Adrian Bunk
Re: [PATCH 1/3] IDE: Coding Style fixes to drivers/ide/ide-c...
In case the goal is not to only improve the checkpatch metrics but to improve the readability of the code the biggest coding style problem here was (and still is) not the indentation. cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed --
Feb 24, 5:56 pm 2008
Paolo Ciarrocchi
[PATCH 0/3] Various IDE coding style fixes
Hi Bart, three more patches, all are compile tested and against yesterday linux-next "IDE: Replace __FUNCTION__ with __func__" depends on "IDE: Coding Style fixes to drivers/ide/ide-cd.c" Paolo Ciarrocchi (3): IDE: Coding Style fixes to drivers/ide/ide-cd.c IDE: Replace __FUNCTION__ with __func__ IDE: Coding Style fixes to drivers/ide/pci/cy82c693.c drivers/ide/ide-cd.c | 259 +++++++++++++++++++++++--------------------- drivers/ide/pci/cy82c693.c | 74 +++++++--...
Feb 24, 5:09 pm 2008
zkopex
[Regression in 2.6.25-rcX] CD/DVD writer no longer works
Hello, I am using Debian Sid on a Toshiba A100 laptop. My CD/DVD writer functions very well on 2.6.23.16 and 2.6.24.2. I tried 2.6.25-rc2-git7, and I was very sad to notice that when I tried to write a CD, wodim started to output the following: "Warning: controller returns zero sized CD capabilities page." Since I was able to use this CD/DVD writer successfully with previous versions of Linux, I believe that this is a regression in 2.6.25-rcX series. I am willing to try patches and to do p...
Feb 24, 4:57 pm 2008
Willy Tarreau
Linux 2.4.36.2
I've just released Linux 2.4.36.2. It reverts a fix from .1 which causes lockups for some people when listing directories on ext2. The only other fix is for vulnerability CVE-2007-6694 which might affect CHRP platforms (powerpc). Those who have already upgraded to 2.4.36.1 should upgrade again. The patch and changelog will appear soon at the following locations: ftp://ftp.all.kernel.org/pub/linux/kernel/v2.4/ ftp://ftp.all.kernel.org/pub/linux/kernel/v2.4/patch-2.4.36.2.bz2 [ message continues ]
" title="ftp://ftp.all...">ftp://ftp.all...
Feb 24, 4:59 pm 2008
Adrian Bunk
defconfig's for all x86 subarchitectures
For compile tests it would be nice it we had at least for each subarchitecture not covered by X86_GENERICARCH a defconfig. These are the following subarchitectures: - X86_ELAN - X86_VOYAGER - X86_NUMAQ - X86_VISWS - X86_RDC321X - X86_VSMP A defconfig is nothing special, it's enough to simply put the .config used for one machine into arch/x86/configs/ . Thanks in advance Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had...
Feb 24, 4:16 pm 2008
Sam Ravnborg Feb 24, 4:40 pm 2008
RED de PROSUMIDORES
Le invito a la conferencia de hoy
Hola Le invito a la conferencia de hoy http://www.prosumidores.de/coaching.php?username=JavierPinon Si aún no tiene instalada la sala de conferencias hágalo desde esa página Saludos Para remover su dirección de correo http://www.autoresponder-hosting.com/autoresponder/box.php?funcml=unsub2&nl=472&am... Si quiere recibir mas detalles [ message continues ]
" title="http://www.autoresponder-hosting.com/autoresponder/box.php?ai=0&mi=0&p=0&e=bGludXgta2VybmVsQ...">http://www.autoresponder-hosting.com/autoresponder/box.php?ai=0&mi=0&p=0&e...
Feb 24, 3:49 pm 2008
Jean Delvare
[GIT PULL] i2c fixes for 2.6.25
Linus, Please pull the i2c subsystem fixes for Linux 2.6.25 from: git://jdelvare.pck.nerim.net/jdelvare-2.6 i2c-for-linus Documentation/i2c/busses/i2c-i801 | 3 ++- arch/arm/mach-omap1/board-sx1.c | 2 ++ drivers/i2c/busses/Kconfig | 2 ++ drivers/i2c/busses/i2c-i801.c | 10 ++++++++-- drivers/i2c/busses/i2c-pca-isa.c | 7 +++++++ drivers/i2c/busses/i2c-pmcmsp.c | 4 ++-- drivers/i2c/busses/i2c-pxa.c | 25 ++++++++++++++---...
Feb 24, 3:24 pm 2008
Theodore Ts'o
CONFIG_FAIR_GROUP_SCHED: setting sched_min_bal_int_shares to...
I recently enabled CONFIG_FAIR_GROUP_SCHED just to play with it, and I noticed by default it causes a fair number of wakeups when running on battery. A quick read-through of the sources showed that this could easily be fixed by doing: echo 2000 > /proc/sys/kernel/sched_min_bal_int_shares Aside from mostly disabling the CPU load balancing, is this likely to cause any massive problems? Any reason why we shouldn't perhaps do this automatically when we run on battery (not necessarily as a k...
Feb 24, 3:07 pm 2008
Adrian McMenamin
lkml.org
At the risk of pointing out the obvious (though I cannot find anyone else who has commented), this appears to be broken at the moment...(ie not picking up new messages) ...which is a pity as it is a great site Adrian --
Feb 24, 2:28 pm 2008
Randy Dunlap
Re: lkml.org
Did you send email to Jasper Spaans? (jasper at vs19.net) --- ~Randy --
Feb 24, 3:39 pm 2008
Jasper Spaans
Re: lkml.org
Problem sort of fixed, looks like a joe job with the lkml.org domain, causing the mta to panic because of too many incoming smtp connections. Limits increased, all seems stable again; the archive should be catching up now as the real mail trickles in again. Jasper -- Jasper Spaans http://jasper.es/ This line was last modified 0 seconds ago. --
Feb 24, 7:43 pm 2008
Paolo Ciarrocchi
[PATCH 4/6] IDE: Coding Style fixes to drivers/ide/pci/it821...
File is now error free, only a few WARNING: line over 80 characters are left. Compile tested. Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com> --- drivers/ide/pci/it8213.c | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/ide/pci/it8213.c b/drivers/ide/pci/it8213.c index a5ba7e8..5b5b0cc 100644 --- a/drivers/ide/pci/it8213.c +++ b/drivers/ide/pci/it8213.c @@ -35,7 +35,7 @@ static void it8213_set_pio_mode(ide_drive_t *drive, const u8 ...
Feb 24, 2:18 pm 2008
Stefan Richter
[PATCH 0/5] firewire: fix crashes in workqueue jobs
Here come 3 fixes + 2 cleanups. 1/5 firewire: invalid pointers used in fw_card_bm_work 2/5 firewire: fix crash in automatic module unloading 3/5 firewire: remove superfluous reference counting 4/5 firewire: fw-sbp2: fix reference counting 5/5 firewire: refactor fw_unit reference counting The main theme is that the firewire-core module has to stay loaded until after all workqueue jobs of the core and of protocol drivers have been finished. This is accomplished by tracking the sum of referen...
Feb 24, 1:56 pm 2008
Stefan Richter
[PATCH 5/5] firewire: refactor fw_unit reference counting
Add wrappers for getting and putting a unit. Remove some line breaks. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de> --- drivers/firewire/fw-device.h | 27 +++++++++++++++++---------- drivers/firewire/fw-sbp2.c | 4 ++-- 2 files changed, 19 insertions(+), 12 deletions(-) Index: linux/drivers/firewire/fw-device.h =================================================================== --- linux.orig/drivers/firewire/fw-device.h +++ linux/drivers/firewire/fw-device.h @@ -64,...
Feb 24, 2:01 pm 2008
Stefan Richter
[PATCH 4/5] firewire: fw-sbp2: fix reference counting
The reference count of the unit dropped too low in an error path in sbp2_probe. Fixed by moving the _get further up. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de> --- drivers/firewire/fw-sbp2.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Index: linux/drivers/firewire/fw-sbp2.c =================================================================== --- linux.orig/drivers/firewire/fw-sbp2.c +++ linux/drivers/firewire/fw-sbp2.c @@ -1083,6 +1083,7 @@ static int sbp2_...
Feb 24, 2:00 pm 2008
Stefan Richter
[PATCH 2/5] firewire: fix crash in automatic module unloading
"modprobe firewire-ohci; sleep .1; modprobe -r firewire-ohci" used to result in crashes like this: BUG: unable to handle kernel paging request at ffffffff8807b455 IP: [<ffffffff8807b455>] PGD 203067 PUD 207063 PMD 7c170067 PTE 0 Oops: 0010 [1] PREEMPT SMP CPU 0 Modules linked in: i915 drm cpufreq_ondemand acpi_cpufreq freq_table applesmc input_polldev led_class coretemp hwmon eeprom snd_seq_oss snd_seq_midi_event snd_seq snd_seq_device snd_pcm_oss snd_mixer_oss butto...
Feb 24, 1:59 pm 2008
Stefan Richter
[PATCH 3/5] firewire: remove superfluous reference counting
The card->kref became obsolete since patch "firewire: fix crash in automatic module unloading" added another counter of card users. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de> --- drivers/firewire/fw-card.c | 38 ------------------------------ drivers/firewire/fw-ohci.c | 8 +++--- drivers/firewire/fw-transaction.h | 4 --- 3 files changed, 4 insertions(+), 46 deletions(-) Index: linux/drivers/firewire/fw-card.c =====================================...
Feb 24, 1:59 pm 2008
Stefan Richter
[PATCH 1/5] firewire: invalid pointers used in fw_card_bm_work
The bus management workqueue job was in danger to dereference NULL pointers. Also, after having temporarily lifted card->lock, a few node pointers and a device pointer may have become invalid. Add NULL pointer checks and get the necessary references. Also, move card->local_node out of fw_card_bm_work's sight during shutdown of the card. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de> --- drivers/firewire/fw-card.c | 51 ++++++++++++++++++++++----------- drivers/fi...
Feb 24, 1:57 pm 2008
Alexander van Heukelum
[PATCH] Fix alignment of early reservation for EBDA
Hi Andi, My eyes fell on the following table in the boot messages: early res: 0 [0-fff] BIOS data page early res: 1 [6000-7fff] SMP_TRAMPOLINE early res: 2 [200000-374557] TEXT DATA BSS early res: 3 [9fc00-a0bff] EBDA early res: 4 [8000-afff] PGTABLE The memory reserved for the EBDA overflows into the area normally reserved for the VGA adaptor. It seems that you wanted to force the allocation to cover whole pages, like: early res: 3 [9f000-9ffff] EBDA This is what this patch implements....
Feb 24, 1:46 pm 2008
Andi Kleen
Re: [PATCH] Fix alignment of early reservation for EBDA
In theory not, in practice it works around some problems in early allocations where the other users assume page alignment. At some point it needs to be cleaned up properly. -Andi --
Feb 24, 3:27 pm 2008
Ingo Molnar
Re: [PATCH] Fix alignment of early reservation for EBDA
well, that's what your EBDA descriptor says - it's set to 9fc00 which is 512 bytes below the VGA range. This behavior didnt really change over v2.6.24 (which reserved 'into' the VGA range too), it's just that in v2.6.25 we also print out these early reservations. Can you see any regression? There should be no harm from overlapping into the VGA range - these "reservations" only make RAM unavailable for normal allocations. your patch on the other hand rounds the EBDA area down which could in ...
Feb 24, 3:41 pm 2008
Alexander van Heukelum
Re: [PATCH] Fix alignment of early reservation for EBDA
It's 1024 bytes below, but yes, the EBDA starts there. Then the first two bytes of the EBDA contain the value 0x0001, which means that its size is Correct. I thought it was new code, but looking more closely, the behaviour has indeed not changed recently (note to self: git log -p somefile.c does Not really: ebda_addr is just a local variable. If the system needs to find the start of the EBDA, it will just have to look at the 16 bit value The patch is exactly trying to do that. The code t...
Feb 24, 4:53 pm 2008
Borislav Petkov
Re: IDE cdrom problem with PLEXTOR DVDR PX-608AL
On Sun, Feb 24, 2008 at 03:38:34PM +1000, Brad Rosser wrote: [ Added Bart to CC: ] well the driver probes the bios for that data and assigns the irq line it gets since your cdrom seems to be hda from what i've seen above, try booting with 'hda=noprobe' or maybe 'hda=none' to see which one turns the probing off for Roughly speaking, cdrom.c is the unified cdrom layer that delivers common functionality to all the cdrom devices. ide-cd and others are the low-level device drivers that offer d...
Feb 24, 1:34 pm 2008
Bartlomiej Zolnierki...
Re: IDE cdrom problem with PLEXTOR DVDR PX-608AL
Does the following patch help? [ It makes ireason handling for REQ_TYPE_ATA_PC requests be the same as for other request types so "ireason == 1" quirk is used if needed. ] --- drivers/ide/ide-cd.c | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) Index: b/drivers/ide/ide-cd.c =================================================================== --- a/drivers/ide/ide-cd.c +++ b/drivers/ide/ide-cd.c @@ -670,8 +670,8 @@ static void cdrom_buffer_sectors (i...
Feb 24, 2:16 pm 2008
Pekka Paalanen
[RFC] mmiotrace full patch, preview 1
Hi all, I have finally got kmmio.c into shape so that it is built in when mmiotrace is built. I'd like to hear your comments on kmmio.c. kmmio.c handles the list of mmio probes with callbacks, list of traced pages, and attaching into the page fault handler and die notifier. It arms, traps and disarms the given pages, this is the core of mmiotrace. mmio-mod.c is a user interface, hooking into ioremap functions and registering the mmio probes. It also decodes the required information from trappe...
Feb 24, 1:03 pm 2008
Sam Ravnborg
Re: [RFC] mmiotrace full patch, preview 1
Hi Pekka. n is default so no need to be explicit. If you prefer being explcit then use: Sam --
Feb 24, 1:59 pm 2008
Ahmed S. Darwish
[BUG + PATCH/Bugfix] x86/lguest: fix pgdir pmd index calcula...
Hi all, Beginning from commits close to v2.6.25-rc2, running lguest always oopses the host kernel. Oops is at [1]. Bisection led to the following commit: commit 37cc8d7f963ba2deec29c9b68716944516a3244f x86/early_ioremap: don't assume we're using swapper_pg_dir At the early stages of boot, before the kernel pagetable has been fully initialized, a Xen kernel will still be running off the Xen-provided pagetables rather than swapper_pg_dir[]. Therefore, readback cr3 t...
Feb 24, 11:55 am 2008
Ingo Molnar
Re: [BUG + PATCH/Bugfix] x86/lguest: fix pgdir pmd index cal...
i think so - nice detective work and nice fix! I've picked up your patch into x86.git#testing (until Rusty picks it up), you can track it the following way: http://people.redhat.com/mingo/x86.git/README it has other lguest fixes as well - could you double-check that x86.git#testing works fine for you as-is? (i've just updated the git tree so it includes your fix as well) Ingo --
Feb 24, 12:18 pm 2008
Ahmed S. Darwish
Re: [BUG + PATCH/Bugfix] x86/lguest: fix pgdir pmd index cal...
Ofcourse. I'll send you the results by GMT night. Regards, -- "Better to light a candle, than curse the darkness" Ahmed S. Darwish Homepage: http://darwish.07.googlepages.com Blog: http://darwish-07.blogspot.com --
Feb 24, 12:26 pm 2008
Gabor Czigola
[PATCH] invert the axes for HDAPS on Lenovo R61i ThinkPads
--- /usr/src/linux-source-2.6.24/drivers/hwmon/hdaps.c 2008-02-08 02:20:38.000000000 +0100 +++ /tmp/hdaps.c 2008-02-24 16:42:52.000000000 +0100 @@ -527,6 +527,7 @@ HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad X60"), HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad Z60m"), HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad T61P"), + HDAPS_DMI_MATCH_INVERT("LENOVO", "ThinkPad R61i"), HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad R61"), HDAPS_DMI_MATCH_NORMAL("IBM", "ThinkPad...
Feb 24, 11:46 am 2008
Robert P. J. Day
[PATCH] DIGIEPCA: Remove long-obsolete digiepca driver.
Given that the removal of this driver has been under discussion for over a year: http://lkml.org/lkml/2006/10/26/231 it would seem time to get rid of it. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> --- Documentation/00-INDEX | 2 Documentation/digiepca.txt | 98 Documentation/ioctl-number.txt | 2 Documentation/kernel-parameters.txt | 4 Documentation/magic-number.txt | 1 MAINTAINERS | 7 d...
Feb 24, 11:12 am 2008
Alan Cox
Re: [PATCH] DIGIEPCA: Remove long-obsolete digiepca driver.
On Sun, 24 Feb 2008 10:12:41 -0500 (EST) NAK - not until a replacement driver supporting the hardware is merged. Alan --
Feb 24, 12:59 pm 2008
Jörn
Page scan keeps touching kernel text pages
While tracking down some unrelated bug I noticed that shrink_page_list() keeps testing very low page numbers (aka kernel text) until deciding that the page lacks a mapping and cannot get freed. Looks like a waste of cpu and cachelines to me. Is there a better reason for this behaviour than lack of a patch? Jörn -- Joern's library part 11: http://www.unicom.com/pw/reply-to-harmful.html --
Feb 24, 10:47 am 2008
Adrian McMenamin
[PATCH] maple: fix device detection
The maple bus driver that went into the kernel mainline in September 2007 contained some bugs which were revealed by the update of the kobj code for the current release series. Unfortunately those bugs also helped ensure maple devices were properly detected. This patch (against the current git) now ensures that devices are properly detected again. (A previous attempt to fix this by delaying initialisation only partially fixed this - as became apparent when the bus was fully loaded) Signed-off-by: Adri...
Feb 24, 10:30 am 2008
Adrian McMenamin
Re: [PATCH] maple: fix device detection
Further testing has shown this has introduced another bug, this time limiting the effectiveness of subdevice detection. Please ignore this while I work on a fix. --
Feb 24, 5:50 pm 2008
previous daytodaynext day
February 23, 2008February 24, 2008February 25, 2008