linux-kernel mailing list

FromSubjectsort iconDate
Harvey Harrison
[PATCH 3/3] lib: add range check to avoid overflow simple_st...
Add a simple range check to avoid overflowing an UL, ULL respectively. The strict versions will catch this case now as the strlen call will be longer than the number of characters read. Previously, the simple function would read as long as there were valied hexadecimal characters remaining. The simple_strtol/ll still can overflow producing sign errors, but maybe those users should be using the strict versions then? Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- As Alexey ...
May 13, 7:57 pm 2008
Harvey Harrison
[PATCH 2/3] lib: vsnprintf.c remove macros defining strict s...
Directly code the strict string conversion functions rather than using defining macros. Pull out a small helper to check the strict conditions required at the end of a string (nul-terminated or newline). Add additional checks in strict_strtol and strict_strtoll for numeric overflow of the signed types. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- lib/vsprintf.c | 145 +++++++++++++++++++++++++++++++++++++------------------ 1 files changed, 97 insertions(+), 48 deletion...
May 13, 7:57 pm 2008
Harvey Harrison
[PATCH 1/3] lib: vsprintf.c pull out two small helpers
The logic for guessing what number base when none is specified is pulled out into a common helper. Small codingstyle changes while in the area. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- lib/vsprintf.c | 101 ++++++++++++++++++++++++++++--------------------------- 1 files changed, 51 insertions(+), 50 deletions(-) diff --git a/lib/vsprintf.c b/lib/vsprintf.c index 6021757..dc5c3ae 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -29,40 +29,51 @@ /* Works only...
May 13, 7:57 pm 2008
Alok Kataria
Possible error in tsc frequency calibration
I was looking at the tsc calibration code (tsc_calibrate) in the recent kernels (2.6.26-rc1). With the newer code of calibrating against the pm_timer and with the added checks for SMI's the tsc_calibration code looks pretty robust, at least for x86_64 systems. However, from the code, (tsc_calibrate) SMI_THRESHOLD is 50000, so in the worst case, values returned by tsc_read_refs, i.e. tsc1 & tsc2, could be off by 50000 ticks. On a 2Ghz processor this would mean an error of 25us. The tsc frequency...
May 13, 7:05 pm 2008
Russ Anderson
[PATCH 3/3] ia64: Call migration code on correctable errors v4
Migrate data off pages with correctable memory errors. This patch is the ia64 specific piece. It connects the CPE handler to the page migration code. It is implemented as a kernel loadable module, similar to the mca recovery code (mca_recovery.ko). This allows the feature to be turned off by uninstalling the module. Signed-off-by: Russ Anderson <rja@sgi.com> --- arch/ia64/Kconfig | 9 arch/ia64/kernel/Makefile | 1 arch/ia64/kernel/cpe_migrate.c | 418 ...
May 13, 7:05 pm 2008
Russ Anderson
[PATCH 2/3] mm: Avoid putting a bad page back on the LRU v4
Prevent a page with a physical memory error from being placed back on the LRU. A new page flag (PG_memerror) is added on 64 bit architectures. Signed-off-by: Russ Anderson <rja@sgi.com> --- include/linux/migrate.h | 1 + include/linux/page-flags.h | 11 ++++++++++- mm/migrate.c | 12 ++++++++++-- mm/page_alloc.c | 8 ++++---- 4 files changed, 25 insertions(+), 7 deletions(-) Index: linus/mm/page_alloc.c ========================================...
May 13, 7:03 pm 2008
Russ Anderson
[PATCH 1/3] mm: Minor clean-up of page flags in mm/page_allo...
Minor source code cleanup of page flags in mm/page_alloc.c. There is no functional change. Signed-off-by: Russ Anderson <rja@sgi.com> --- include/linux/page-flags.h | 9 +++++++++ mm/page_alloc.c | 34 +++------------------------------- 2 files changed, 12 insertions(+), 31 deletions(-) Index: linus/mm/page_alloc.c =================================================================== --- linus.orig/mm/page_alloc.c 2008-05-12 14:23:07.711484337 -0500 +++ linus/mm/page_a...
May 13, 7:02 pm 2008
Russ Anderson
[PATCH 0/3] ia64: Migrate data off physical pages with corre...
Migrate data off physical pages with corrected memory errors (Version 4) Version 4 changes: page.discard.v4: - Remove the hot path checks in lru_cache_add() and lru_cache_add_active(). Avoid moving the bad page to the LRU in unmap_and_move() and putback_lru_pages(). (per Linus Torvalds's request). cpe.migrate.v4 - More code style cleanup (per Andrew Morton's request). - Removed locking when calling the migration code (per Christoph Lameter's request). - If the...
May 13, 7:01 pm 2008
Dan Williams
Re: [PATCH 1/1] dma:
Thanks, applied. -- Dan --
May 13, 6:55 pm 2008
Aurelien Nephtali
[patch] net/usb : add support for Apple USB Ethernet Adapter
Hello, The following patch adds support for Apple USB Ethernet Adapter. http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?nplm=MB442Z/A It applies against kernel 2.6.25.3. Signed-off-by: Aurelien Nephtali <aurelien@sitadelle.com> --- linux/drivers/net/usb/asix.c.orig 2008-05-13 19:46:19.000000000 +0200 +++ linux/drivers/net/usb/asix.c 2008-05-13 19:47:20.000000000 +0200 @@ -1437,6 +1437,10 @@ static const struct usb_device_id produc //...
May 13, 6:04 pm 2008
Greg KH May 13, 5:51 pm 2008
Alan Cox
Re: [PATCH] HSO: add option hso driver
Can we get it into 2.6.26 - its a driver for new hardware and the driver is going to get a clean up for 2.6.27 anyway. Comments below are minor and I don't think blockers So for the serial side tty is passed why keep using serial->tty (hint: think about parallel (else *tty->termios = *old_termios) --
May 13, 6:27 pm 2008
Jeff Garzik
Re: [PATCH] HSO: add option hso driver
AFAIK new drivers are OK post-rc1, since no possibility of regression and it enables new users. However, an exception to that might be a super-huge driver slipped in at the last minute with no review (clearly not the case here) Jeff --
May 13, 7:26 pm 2008
Roel Kluin
[PATCH] sched: unite unlikely pairs in rt_policy() and sched...
Removes obfuscation and may improve assembly Signed-off-by: Roel Kluin <roel.kluin@gmail.com> --- diff --git a/kernel/sched.c b/kernel/sched.c index 8841a91..86a0cd3 100644 --- a/kernel/sched.c +++ b/kernel/sched.c @@ -136,7 +136,7 @@ static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val) static inline int rt_policy(int policy) { - if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR)) + if (unlikely(policy == SCHED_FIFO || policy == SCHED_RR)) return 1...
May 13, 5:44 pm 2008
Niels
Re: WD doesn`t use disks with Linux - was Re: Re:Western Dig...
[snip rest] WD has certainly lost me and my company as customers with this attitude. //Niels --
May 13, 5:28 pm 2008
Timur Tabi
[PATCH][RFC] Add alloc_pages_exact() and free_pages_exact()
alloc_pages_exact() is similar to alloc_pages(), except that it allocates the minimum number of pages to fulfill the request. This is useful if you want to allocate a very large buffer that is slightly larger than an even power-of-two number of pages. In that case, alloc_pages() will waste a lot of memory. I have a video driver that wants to allocate a 5MB buffer. alloc_pages() will waste 3MB of physically-contiguous memory. Therefore, I would like to see alloc_pages_exact() added to 2.6.27. ...
May 13, 5:26 pm 2008
Roel Kluin
[PATCH ?] pcmcia: ti113x: fix ENE_TEST_C9_PFENABLE definition
This code was added in commit 8c3520d4eb3b1bbf2e45fbae8dcfb8db06d5e775 Is the replacement below correct, or should the second ENE_TEST_C9_PFENABLE_F0 be removed? The patch below assumes the former is correct. --- Fix ENE_TEST_C9_PFENABLE definition. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> --- diff --git a/drivers/pcmcia/ti113x.h b/drivers/pcmcia/ti113x.h index d29657b..87a5fd5 100644 --- a/drivers/pcmcia/ti113x.h +++ b/drivers/pcmcia/ti113x.h @@ -155,7 +155,7 @@ #define ENE_TES...
May 13, 5:04 pm 2008
Roland
WD doesn`t use disks with Linux - was Re: Re:Western Digital...
I`ve got a real funky response from WD support today, i`d like to share here. This is just too weird.... After asking if they could give a comment if the problem with the high Load_Cycle_Count may be an issue of their drives or an issue of Linux i got: ------ Dear...... The problem is, that we actually don`t use the disks with Linux. I´m sorry that i cannot send further information to you. Sincery yours <insert support employee name here> Western Digital Service and Support --...
May 13, 5:00 pm 2008
Arnd Hannemann
Re: WD doesn`t use disks with Linux - was Re: Re:Western Dig...
Well the answer was probably just from a first level support person so nothing one should get excited about. Anyway to the high Load_Cycle_Count; if I understood the technology correctly the WD GreenPower drives are exactly "Green" because they unload the heads on a plastic ramp (no landing zone!) quite often during longer idle periods. Thus they can power off the positioning logic and actuator of the heads. -> safe Power This also explains why the power usage under seek is comparable with othe...
May 13, 5:20 pm 2008
Jan Engelhardt
Re: WD doesn`t use disks with Linux - was Re: Re:Western Dig...
I don't find it Green when I have to buy new disks because of ramp or LZ, it's quite a force with which the head is parked. --
May 13, 6:29 pm 2008
Bill Johnstone
Incorrect SMP topology reported on AMD K7 MP system
Hello. I have some older cluster nodes running dual AMD Athlon MP 2600+ processors on Tyan S2469 motherboards, running the latest BIOS that Tyan released, version 1.08 . Issue: the number of processors and sockets on this system is 2. The second processor has a /sys/devices/system/cpu/cpu1/topology/physical_package_id value of 0, whereas it should be 1. /proc/cpuinfo looks OK and the kernel seems to recognize and otherwise deal with both processors correctly. The kernel is a Gentoo version of 2.6...
May 13, 4:53 pm 2008
Vegard Nossum
[BISECTED] Lots of "rescheduling IPIs" in powertop
Hi, Recap: powertop shows between 200-400 wakeups/second with the description "<kernel IPI>: Rescheduling interrupts" when all processors have load (e.g. I need to run two busy-loops on my 2-CPU system for this to show up). The bisect resulted in this commit: commit 0c07ee38c9d4eb081758f5ad14bbffa7197e1aec Author: Andi Kleen <ak@suse.de> Date: Wed Jan 30 13:33:16 2008 +0100 x86: use the correct cpuid method to detect MWAIT support for C states Previously there was a ...
May 13, 4:42 pm 2008
Andi Kleen
Re: [BISECTED] Lots of "rescheduling IPIs" in powertop
What CPUs do they have? And does the problem really go away when you boot with idle=mwait ? And what does the following program output? #include <asm/msr.h> main() { printf("%x\n", cpuid_edx(5)); } -Andi --
May 13, 4:54 pm 2008
Vegard Nossum
Re: [BISECTED] Lots of "rescheduling IPIs" in powertop
Yes, the problem goes away with idle=mwait. The desktop is a P4: processor : 0 vendor_id : GenuineIntel cpu family : 15 model : 6 model name : Intel(R) Pentium(R) 4 CPU 3.00GHz stepping : 5 cpu MHz : 2992.624 cache size : 2048 KB physical id : 0 siblings : 2 core id : 0 cpu cores : 1 fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : y...
May 13, 5:09 pm 2008
Andi Kleen
Re: [BISECTED] Lots of "rescheduling IPIs" in powertop
Ok the CPU reports it doesn't support any C states in MWAIT. If that is correct then it would be correct to not use MWAIT idle and might actually save more power to not use it. I don't know if that's true or not. Do you have a power meter perhaps? If yes can you measure if there's a difference between mwait=idle / default on your box when it is idle? CPU reports it supports C1/C2/C3. Are you sure there is a difference on that box? The code should have kept using MWAIT because it checks C1. P...
May 13, 5:19 pm 2008
Roel Kluin
[PATCH] net: ipg: fix receivemode IPG_RM_RECEIVEMULTICAST{,H...
The branches are dead code. even when dev->flag IFF_MULTICAST (defined 0x1000) is set, dev->flags & IFF_MULTICAST & [boolean] always evaluates to 0. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> --- diff --git a/drivers/net/ipg.c b/drivers/net/ipg.c index 9b358f6..679a082 100644 --- a/drivers/net/ipg.c +++ b/drivers/net/ipg.c @@ -577,12 +577,12 @@ static void ipg_nic_set_multicast_list(struct net_device *dev) /* NIC to be configured in promiscuous mode. */ receivemod...
May 13, 4:32 pm 2008
Cammarata, James
[PATCH] net: add ability to clear per-interface network stat...
From: James Cammarata <jimi@sngx.net> Added the ability to write to /proc/net/dev in order to clear the interface counters for a given interface. The ability to zero out counters (especially the error counters) is extremely useful when troubleshooting interface issues. Syntax: echo 'net clear-stats ifdev' > /proc/net/dev Where "ifdev" is the device name you wish to clear. This code is based mainly on the code found in drivers/scsi/scsi_proc.c Signed-off-by: James Cammarata <j...
May 13, 4:25 pm 2008
Roel Kluin
[PATCH] wireless, airo: waitbusy() won't delay
There will be no delay even when COMMAND_BUSY (defined 0x8000) is set: 0x8000 & (delay < 10000) will evaluate to 0 - when delay is 0. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> --- diff --git a/drivers/net/wireless/airo.c b/drivers/net/wireless/airo.c index 45f47c1..efb7444 100644 --- a/drivers/net/wireless/airo.c +++ b/drivers/net/wireless/airo.c @@ -2904,7 +2904,7 @@ EXPORT_SYMBOL(init_airo_card); static int waitbusy (struct airo_info *ai) { int delay = 0; - while ((I...
May 13, 4:12 pm 2008
Dan Williams May 13, 5:43 pm 2008
Greg KH
[patch 00/37] 2.6.25.4 -stable review
This is the start of the stable review cycle for the 2.6.25.4 release. There are 37 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let us know. If anyone is a maintainer of the proper subsystem, and wants to add a Signed-off-by: line to the patch, please respond with it. These patches are sent out with a number of different people on the Cc: line. If you wish to be a reviewer, please email stable@kernel.org to add y...
May 13, 4:10 pm 2008
Greg KH
[patch 37/37] md: fix raid5 repair operations
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Dan Williams <dan.j.williams@intel.com> commit c8894419acf5e56851de9741c5047bebd78acd1f upstream Date: Mon, 12 May 2008 14:02:12 -0700 Subject: [patch 37/37] md: fix raid5 'repair' operations commit bd2ab67030e9116f1e4aae1289220255412b37fd "md: close a livelock window in handle_parity_checks5" introduced a bug in handling 'repair' operations. After a repair operation completes we clea...
May 13, 4:12 pm 2008
Greg KH
[patch 36/37] rtc: rtc_time_to_tm: use unsigned arithmetic
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Maciej W. Rozycki <macro@linux-mips.org> commit 945185a69daa457c4c5e46e47f4afad7dcea734f upstream Date: Mon, 12 May 2008 14:02:24 -0700 Subject: [patch 36/37] rtc: rtc_time_to_tm: use unsigned arithmetic The input argument to rtc_time_to_tm() is unsigned as well as are members of the output structure. However signed arithmetic is used within for calculations leading to incorrect resu...
May 13, 4:12 pm 2008
Greg KH
[patch 35/37] SCSI: aha152x: fix init suspiciously returned ...
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: James Bottomley <James.Bottomley@HansenPartnership.com> commit ad2fa42d044b98469449880474a9662fb689f7f9 upstream The driver is apparently returning 0 on failure and 1 on success. That's a bit unfortunate. Fix it by altering to -ENODEV and 0. Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> --- ...
May 13, 4:12 pm 2008
Greg KH
[patch 34/37] SCSI: aha152x: Fix oops on module removal
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: James Bottomley <James.Bottomley@HansenPartnership.com> commit 64976a0387835a7ac61bbe2a99b27ccae34eac5d upstream The problem is that the driver calls aha152x_release() under a list_for_each_entry(). Unfortunately, aha152x_release() deletes from the list in question. Fix this by using list_for_each_entry_safe(). Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership....
May 13, 4:12 pm 2008
Greg KH
[patch 33/37] SCSI: libiscsi regression in 2.6.25: fix setti...
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Mike Christie <michaelc@cs.wisc.edu> commit c8611f975403dd20e6503aff8aded5dcb718f75b upstream If the ping tmo is longer than the recv tmo then we could miss a window where we were supposed to check the recv tmo. This happens because the ping code will set the next timeout for the ping timeout, and if the ping executes quickly there will be a long chunk of time before the timer wakes u...
May 13, 4:12 pm 2008
Greg KH
[patch 32/37] SCSI: libiscsi regression in 2.6.25: fix nop t...
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Mike Christie <michaelc@cs.wisc.edu> commit 4cf1043593db6a337f10e006c23c69e5fc93e722 upstream The following patch fixes a bug in the iscsi nop processing. The target sends iscsi nops to ping the initiator and the initiator has to send nops to reply and can send nops to ping the target. In 2.6.25 we moved the nop processing to the kernel to handle problems when the userspace daemon ...
May 13, 4:12 pm 2008
Greg KH
[patch 31/37] SCSI: qla1280: Fix queue depth problem
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Jeremy Higdon <jeremy@sgi.com> commit af5741c6de4f4a1d8608b0f00867c77cb7123635 upstream The qla1280 driver was ANDing the output value of mailbox register 0 with (1 << target-number) to determine whether to enable queueing on the target in question. But mailbox register 0 has the status code for the mailbox command (in this case, Set Target Parameters). Potential values are: ...
May 13, 4:12 pm 2008
Greg KH
[patch 30/37] r8169: fix oops in r8169_get_mac_version
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Ivan Vecera <ivecera@redhat.com> commit 21e197f231343201368338603cb0909a13961bac upstream. r8169_get_mac_version crashes when it meets an unknown MAC due to tp->pci_dev not being set. Initialize it early. Signed-off-by: Ivan Vecera <ivecera@redhat.com> Acked-by: Francois Romieu <romieu@fr.zoreil.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> --- dr...
May 13, 4:12 pm 2008
Greg KH
[patch 29/37] r8169: fix past rtl_chip_info array size for u...
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Roel Kluin <12o3l@tiscali.nl> commit cee60c377de6d9d10f0a2876794149bd79a15020 upstream. 'i' is unsigned. Signed-off-by: Roel Kluin <12o3l@tiscali.nl> Acked-by: Francois Romieu <romieu@fr.zoreil.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> --- drivers/net/r8169.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/drivers/net/r816...
May 13, 4:12 pm 2008
Greg KH
[patch 28/37] USB: airprime: unlock mutex instead of trying ...
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Leonardo Chiquitto <leonardo@iken.com.br> commit 21ae1dd1d4948968ad2d923c5e104d38fb35b4e4 upstream The following patch fixes a [probable] copy & paste mistake in airprime.c. Instead of unlocking an acquired mutex, the actual code tries to lock it again. Signed-off-by: Leonardo Chiquitto <lchiquitto@novell.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> ---...
May 13, 4:12 pm 2008
Greg KH
[patch 27/37] sparc32: Dont twiddle PT_DTRACE in exec.
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: David S. Miller <davem@davemloft.net> [ Upstream commit: c07c6053c41f736711ed856aa377007078c7c396 ] That bit isn't used on this platform. Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> --- arch/sparc/kernel/process.c | 5 ----- 1 file changed, 5 deletions(-) --- a/arch/sparc/kernel/process.c +++ b/arch/s...
May 13, 4:12 pm 2008
Greg KH
[patch 26/37] sparc: Fix debugger syscall restart interactio...
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: David S. Miller <davem@davemloft.net> [ This is a 2.6.25 backport of upstream changeset 28e6103665301ce60634e8a77f0b657c6cc099de with sparc32 build fixes from Robert Reif ] So, forever, we've had this ptrace_signal_deliver implementation which tries to handle all of the nasties that can occur when the debugger looks at a process about to take a signal. It's meant to address all ...
May 13, 4:12 pm 2008
Greg KH
[patch 25/37] sparc: Fix mremap address range validation.
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: David S. Miller <davem@davemloft.net> Just like mmap, we need to validate address ranges regardless of MAP_FIXED. sparc{,64}_mmap_check()'s flag argument is unused, remove. Based upon a report and preliminary patch by Jan Lieskovsky <jlieskov@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> --...
May 13, 4:12 pm 2008
Linus Torvalds
Re: [patch 25/37] sparc: Fix mremap address range validation.
Hmm. I don't have this one in my tree. Is it obsoleted by the other patches I do have, or what? If so, some comment about that would be nice. Linus --
May 13, 4:28 pm 2008
Greg KH
Re: [patch 25/37] sparc: Fix mremap address range validation.
Odd, I missed that. David, did you just forget to send this one? thanks, greg k-h --
May 13, 4:37 pm 2008
Greg KH
[patch 24/37] sparc: Fix ptrace() detach.
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: David S. Miller <davem@davemloft.net> [ Upstream commit: 986bef854fab44012df678a5b51817d5274d3ca1 ] Forever we had a PTRACE_SUNOS_DETACH which was unconditionally recognized, regardless of the personality of the process. Unfortunately, this value is what ended up in the GLIBC sys/ptrace.h header file on sparc as PTRACE_DETACH and PT_DETACH. So continue to recognize this old value....
May 13, 4:12 pm 2008
Greg KH
[patch 23/37] i2c-piix4: Blacklist two mainboards
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Jean Delvare <khali@linux-fr.org> commit c2fc54fcd340cbee47510aa84c346aab3440ba09 upstream We had a report that running sensors-detect on a Sapphire AM2RD790 motherbord killed the CPU. While the exact cause is still unknown, I'd rather play it safe and prevent any access to the SMBus on that machine by not letting the i2c-piix4 driver attach to the SMBus host device on that machine. A...
May 13, 4:12 pm 2008
Greg KH
[patch 22/37] x86: sysfs cpu?/topology is empty in 2.6.25 (3...
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Vaidyanathan Srinivasan <svaidy@linux.vnet.ibm.com> commit 5c3a121d52b30a1e53cdaa802fa1965fcd243164 upstream System topology on intel based system needs to be exported for non-numa case as well. All parts of asm-i386/topology.h has come under #ifdef CONFIG_NUMA after the merge to asm-x86/topology.h /sys/devices/system/cpu/cpu?/topology/* is populated based on ENABLE_TOPO_DEFINES ...
May 13, 4:12 pm 2008
Greg KH
[patch 21/37] ata_piix: verify SIDPR access before enabling it
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Tejun Heo <htejun@gmail.com> commit cb6716c879ecf49e2af344926c6a476821812061 upstream On certain configurations (certain macbooks), even though all the conditions for SIDPR access described in the datasheet are met, actually reading those registers just returns 0 and have no effect on write. Verify SIDPR is actually working before enabling it. This is reported by Ryan Roth in bz#10...
May 13, 4:12 pm 2008
Greg KH
[patch 20/37] {nfnetlink, ip, ip6}_queue: fix skb_over_panic...
2.6.25-stable review patch. If anyone has any objections, please let us know. ------------------ From: Arnaud Ebalard <arno@natisbad.org> [NETFILTER]: {nfnetlink,ip,ip6}_queue: fix skb_over_panic when enlarging packets From: Arnaud Ebalard <arno@natisbad.org> Upstream commit 9a732ed6d: While reinjecting *bigger* modified versions of IPv6 packets using libnetfilter_queue, things work fine on a 2.6.24 kernel (2.6.22 too) but I get the following on recents kernels (2.6.25, trace...
May 13, 4:12 pm 2008
previous daytodaynext day
May 12, 2008May 13, 2008May 14, 2008