| From | Subject | Date |
|---|---|---|
| Harvey Harrison | [PATCH] x86: early_printk.c trivial sparse fixes
arch/x86/kernel/early_printk.c:404:13: warning: incorrect type in assignment (different base types)
arch/x86/kernel/early_printk.c:404:13: expected restricted __le16 [assigned] [usertype] wValue
arch/x86/kernel/early_printk.c:404:13: got int [signed] value
arch/x86/kernel/early_printk.c:405:13: warning: incorrect type in assignment (different base types)
arch/x86/kernel/early_printk.c:405:13: expected restricted __le16 [assigned] [usertype] wIndex
arch/x86/kernel/early_printk.c:405:13: got ...
| Aug 18, 7:56 pm 2008 |
| Yousaf Jindal | Re: [ANNOUNCE] Wifi Link 5300 and 5100 Series
Thanks Thomas, my config file is attached.
-- Yousaf
--
Yousaf Jindal
Director of Technology
Pakistani Institute
| Aug 18, 7:55 pm 2008 |
| Fred . | The state of audio in Linux
What is the state of audio in Linux?
How does it compare against other operating systems?
Is the Linux audio functionality good or bad?
What could be better?
What is planned for the future?
--
| Aug 18, 7:44 pm 2008 |
| David Brownell | [patch 2.6.27-rc3] at91_mci: don't use coherent dma buffers
From: David Brownell <dbrownell@users.sourceforge.net>
At91_mci is abusing dma_free_coherent(), which may not be called
with IRQs disabled. I saw "mkfs.ext3" on an MMC card objecting
voluminously as each write completed:
WARNING: at arch/arm/mm/consistent.c:368 dma_free_coherent+0x2c/0x224()
[<c002726c>] (dump_stack+0x0/0x14) from [<c00387d4>] (warn_on_slowpath+0x4c/0x68)
[<c0038788>] (warn_on_slowpath+0x0/0x68) from [<c0028768>] (dma_free_coherent+0x2c/0x224)
...
| Aug 18, 7:07 pm 2008 |
| Anthony Liguori | [PATCH] virtio_balloon: fix towards_target when deflating ba...
Both v and vb->num_pages are u32 and unsigned int respectively. If v is less
than vb->num_pages (and it is, when deflating the balloon), the result is a
very large 32-bit number. Since we're returning a s64, instead of getting the
same negative number we desire, we get a very large positive number.
This handles the case where v < vb->num_pages and ensures we get a small,
negative, s64 as the result.
Rusty: please push this for 2.6.27-rc4. It's probably appropriate for the
stable tr...
| Aug 18, 6:15 pm 2008 |
| Jeremy Fitzhardinge | [PATCH 0 of 9] x86/smp function calls: convert x86 tlb flush...
This series:
- adds a simple debugfs profiling entry for cross-cpu tlb flushes
- converts them to using smp_call_function_mask
- unifies 32 and 64-bit tlb flushes
- converts smp_call_function to using multiple queues (using the now
freed vectors)
- allows config-time adjustment of the number of queues
- adds a kernel parameter to disable multi-queue in case it causes
problems
The main concern is whether using smp_call_function adds an
unacceptible performance hit to cross-cpu tlb f...
| Aug 18, 2:23 pm 2008 |
| Jeremy Fitzhardinge | [PATCH 6 of 9] smp_function_call: add multiple queues for sc...
This patch allows an architecture to have multiple smp_call_function
queues, in order to reduce contention on a single queue and lock. By
default there is still one queue, so this patch makes no functional
change.
However, an architecture can set CONFIG_GENERIC_SMP_QUEUES to enable a
certain number of queues. It's expected it will will set up an IPI
vector for each queue, and it should pass the appropriate queue number
into generic_smp_call_function_interrupt.
Signed-off-by: Jeremy Fitzharding...
| Aug 18, 2:23 pm 2008 |
| Jeremy Fitzhardinge | [PATCH 7 of 9] x86: add multiple smp_call_function queues
This adds 8 queues for smp_call_function(), in order to avoid a
bottleneck on a single global lock and list for function calls. When
initiating a function call, the sender chooses a queue based on its
own processor id (if there are more than 8 processors, they hash down
to 8 queues). It then sends an IPI to the corresponding vector for
that queue to each target CPU. The target CPUs use the vector number
to determine which queue they should scan for work.
This should give smp_call_function the sa...
| Aug 18, 2:23 pm 2008 |
| Jeremy Fitzhardinge | [PATCH 2 of 9] x86-32: use smp_call_function_mask for SMP TL...
Now that smp_call_function_mask exists and is scalable, there's no
reason to have a special TLB flush IPI. This saves a mass of code.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
---
arch/x86/kernel/irqinit_32.c | 3 -
arch/x86/kernel/tlb_32.c | 86 +++++------------------------
include/asm-x86/irq_vectors.h | 1
include/asm-x86/mach-default/entry_arch.h | 1
4 files changed, 17 insertions(+), 74 deletions(-)
di...
| Aug 18, 2:23 pm 2008 |
| Jeremy Fitzhardinge | [PATCH 9 of 9] smp function calls: add kernel parameter to d...
There was some concern that using multiple queues - and their
associated APIC vectors - may trigger bugs in various dubious APIC
implementations. This patch adds a command line option to force the
kernel to use a single queue, even if the architecture can support
more.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
---
Documentation/kernel-parameters.txt | 5 +++++
arch/x86/kernel/smp.c | 2 +-
arch/x86/xen/smp.c | 6 ++++--
in...
| Aug 18, 2:23 pm 2008 |
| Jeremy Fitzhardinge | [PATCH 1 of 9] x86: put tlb_flush_others() stats in debugfs
Put tlb_flush_others() latency measurements in debugfs.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
---
arch/x86/kernel/tlb_64.c | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/arch/x86/kernel/tlb_64.c b/arch/x86/kernel/tlb_64.c
--- a/arch/x86/kernel/tlb_64.c
+++ b/arch/x86/kernel/tlb_64.c
@@ -7,6 +7,7 @@
#include <linux/kernel_stat.h>
#include <linux/mc146818rtc.h>
#include <linux/interrupt.h>
+...
| Aug 18, 2:23 pm 2008 |
| Jeremy Fitzhardinge | [PATCH 8 of 9] x86: make number of smp_call_function queues ...
Previously, the config option GENERIC_SMP_QUEUES was never actually
adjustable because a moderate amount of static boilerplate code had to
match.
This patch makes it truely adjustable up to the number of IPI vectors
we statically preallocate. The various IPI handlers are generated by
looping assembler macros, and their addresses are put into an array
for C code to use to actually set the vectors up.
The default number of queues is never more than NR_CPUS, and defaults
to NR_CPUS. Ideally this ...
| Aug 18, 2:23 pm 2008 |
| Jeremy Fitzhardinge | [PATCH 4 of 9] x86: make tlb_32|64 closer
Bring arch/x86/kernel/tlb_32.c and _64.c closer into alignment, so
that unification is more straightforward. After this patch, the
remaining differences come down to UV support and the distinction
between percpu and pda variables.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
---
arch/x86/kernel/tlb_32.c | 39 +++++++++++++++++++--------------------
arch/x86/kernel/tlb_64.c | 12 +++++++-----
2 files changed, 26 insertions(+), 25 deletions(-)
diff --git a/arch/...
| Aug 18, 2:23 pm 2008 |
| Jeremy Fitzhardinge | [PATCH 3 of 9] x86-64: use smp_call_function_mask for SMP TL...
Now that smp_call_function_mask exists and is scalable, there's no
reason to have a special TLB flush IPI. This saves a mass of code.
In the process, I removed a copy of a cpumask_t. The UV tlb flush
code relies on that copy, so I propagated it down.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Cc: Cliff Wickman <cpw@sgi.com>
---
arch/x86/kernel/entry_64.S | 15 ----
arch/x86/kernel/irqinit_64.c | 10 ---
arch/x86/kernel/tlb_64.c | 124 ++++++-...
| Aug 18, 2:23 pm 2008 |
| Jeremy Fitzhardinge | [PATCH 5 of 9] x86: unify tlb.c
arch/x86/kernel/tlb_*.c are functionally identical, so unify them.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
---
arch/x86/kernel/Makefile | 2
arch/x86/kernel/tlb.c | 268 ++++++++++++++++++++++++++++++++++++++++++++++
arch/x86/kernel/tlb_32.c | 190 --------------------------------
arch/x86/kernel/tlb_64.c | 235 ----------------------------------------
4 files changed, 269 insertions(+), 426 deletions(-)
diff --git a/arch/x86/kernel/Makefile b/arch/x86...
| Aug 18, 2:23 pm 2008 |
| Hiroshi Shimamoto | [PATCH -tip] rcuclassic: fix compiler warning
From: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
CC kernel/rcuclassic.o
kernel/rcuclassic.c: In function 'rcu_init_percpu_data':
kernel/rcuclassic.c:705: warning: comparison of distinct pointer types lacks a cast
kernel/rcuclassic.c:713: warning: comparison of distinct pointer types lacks a cast
flags should be unsigned long.
Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
---
kernel/rcuclassic.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
...
| Aug 18, 5:39 pm 2008 |
| Paul E. McKenney | Re: [PATCH -tip] rcuclassic: fix compiler warning
You beat me to it!
--
| Aug 18, 7:28 pm 2008 |
| Jeremy Fitzhardinge | Re: [PATCH 2/2] Xen: Fix memory access violation bug when CO...
Thanks again, Alex.
Ingo, please apply.
--
| Aug 18, 5:39 pm 2008 |
| Jeremy Fitzhardinge | Re: [PATCH 1/2] Xen: Fix bug `do_IRQ: cannot handle IRQ -1 v...
Thanks Alex.
Ingo, please apply.
--
| Aug 18, 5:38 pm 2008 |
| Simon Arlott | BUG in free_block (tainted)
http://img169.imageshack.us/img169/1170/1005548cp9.jpg
2.6.27-rc3 09873-gb08c7f5
(Tainted with fglrx, but X hadn't been run...)
--
Simon Arlott
| Aug 18, 5:28 pm 2008 |
| Pekka Enberg | Re: BUG in free_block (tainted)
Hi Simon,
Looks like SLAB corruption so fglrx could have caused this even if you
just loaded the module. Do you have CONFIG_DEBUG_SLAB enabled? If not,
you might want to try to reproduce this with it. Of course,
reproducing the oops without fglrx would be most helpful. :-)
Pekka
--
| Aug 18, 5:37 pm 2008 |
| Simon Arlott | Re: BUG in free_block (tainted)
In that case please disregard this completely. It's not yet happened again.
fglrx completely breaks slab in fantastic ways... I could show you my
/proc/slabinfo... the start of it is badly corrupted - but only if X
has been started (attached).
I might try enabling CONFIG_DEBUG_SLAB, perhaps it can detect that bug...
--
Simon Arlott
| Aug 18, 5:42 pm 2008 |
| Pekka Enberg | Re: BUG in free_block (tainted)
Hi Simon,
Aww, apparently the fglrx driver creates tons of SLAB caches with
really funky names for no good reason... Oh well, one more reason to
stay away from that crap and help out the nouveau folks instead ;-).
Pekka
--
| Aug 18, 5:49 pm 2008 |
| Benjamin Herrenschmidt | Re: [PATCH] RADEON: duplicate PIXCLKS_CNTL__R300_P2G2CLK_ALW...
Hard to say... this code originates from ATI. I'll have to dig a bit
--
| Aug 18, 6:06 pm 2008 |
| Yinghai Lu | [PATCH] irq: rename irq_desc() to to_irq_desc() - fix
some left overs.
__do_IRQ not take desc as parameter
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
---
arch/alpha/kernel/irq.c | 2 +-
arch/arm/kernel/irq.c | 10 ++++------
arch/avr32/kernel/irq.c | 8 +++-----
arch/cris/kernel/irq.c | 2 +-
arch/h8300/kernel/irq.c | 2 +-
arch/ia64/kernel/iosapic.c | 2 +-
arch/ia64/kernel/msi_ia64.c | 2 +-
arch/ia64/sn/kernel/irq.c ...
| Aug 18, 4:44 pm 2008 |
| Yinghai Lu | [PATCH] irq: rename irq_desc() to to_irq_desc() - fix #2
kstat_irqs related, so only CONFIG_DYN_ARRAY/SPARSE_IRQ will have kstat_irqs in irq_desc
other arch still have kstat_irqs in kstat
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
---
arch/alpha/kernel/irq.c | 2 +-
arch/alpha/kernel/irq_alpha.c | 2 +-
arch/arm/kernel/irq.c | 2 +-
arch/arm/mach-ns9xxx/irq.c | 3 ++-
arch/avr32/kernel/irq.c | 4 ++--
arch/cris/kernel/irq.c | 2 ...
| Aug 18, 4:44 pm 2008 |
| Yinghai Lu | [PATCH] irq: rename irq_desc() to to_irq_desc() - fix #3
add create_irq_nr, and retore create_irq to old
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
---
arch/arm/mach-iop13xx/msi.c | 4 ++--
arch/ia64/kernel/iosapic.c | 6 +++---
arch/ia64/kernel/irq_ia64.c | 2 +-
arch/ia64/kernel/msi_ia64.c | 2 +-
arch/ia64/sn/kernel/msi_sn.c | 2 +-
arch/x86/kernel/io_apic.c | 18 +++++++++++++++---
drivers/pci/htirq.c | 2 +-
drivers/pci/intel-iommu.c | 2 +-
include/linux/irq.h | 3 ++-
9 fi...
| Aug 18, 4:44 pm 2008 |
| Harvey Harrison | [PATCH 2/2] pvrusb2: use proper byteorder interface
___swab32 is an internal detail of the implementation.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
---
I really suspect this should be something like be32_to_cpu...if this code
was written on an x86.
drivers/media/video/pvrusb2/pvrusb2-hdw.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/drivers/media/video/pvrusb2/pvrusb2-hdw.c b/drivers/media/video/pvrusb2/pvrusb2-hdw.c
index f051c6a..7fa903a 100644
--- a/drivers/media/video/pvrusb2/pvrusb2-h...
| Aug 18, 4:38 pm 2008 |
| Harvey Harrison | [PATCH 1/2] byteorder: add new headers for make headers-inst...
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
---
Andrew, two fixes before the arches start moving over.
include/linux/Kbuild | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/linux/Kbuild b/include/linux/Kbuild
index 7d97067..0ffee42 100644
--- a/include/linux/Kbuild
+++ b/include/linux/Kbuild
@@ -179,6 +179,7 @@ unifdef-y += audit.h
unifdef-y += auto_fs.h
unifdef-y += auxvec.h
unifdef-y += binfmts.h
+unifdef-y += byteorder.h
unifdef-...
| Aug 18, 4:38 pm 2008 |
| Vegard Nossum | oprofile + hibernation = badness
Hi,
I'm probably crazy to do it, but...
$ opcontrol --start
$ echo disk > /sys/power/state
...leads to lots of badness/strangeness. First, lots of APIC errors:
APIC error on CPU0: 40(40)
[repeat 8 times]
APIC error on CPU1: 40(40)
APIC error on CPU1: 40(40)
APIC error on CPU0: 40(40)
These keep on coming all through the suspend/shutdown sequence, also
intermixing with other messages. I'm guessing oprofile is trying to
NMI CPUs that have been brought down?
Now I get some A...
| Aug 18, 4:32 pm 2008 |
| Rafael J. Wysocki | Re: oprofile + hibernation = badness
They CPUs are taken down after suspending devices. If you boot the
kernel with 'no_console_suspend' in the command line, there will be more
debug information to have a look at.
Also, you can do
# echo core > /sys/power/pm_test
before the '$ echo disk > /sys/power/state' (that only tests the suspend
sequence without actually hibernating) and see what symptoms will be
That last thing is probably the safest to do at the moment.
Apparently nmi_suspend() conflicts with oprofile somehow...
| Aug 18, 4:51 pm 2008 |
| Vegard Nossum | Re: oprofile + hibernation = badness
That is a good suggestion :-)
Here is offlining:
CPU 1 is now offline
lockdep: fixing up alternatives.
SMP alternatives: switching to UP code
CPU0 attaching NULL sched-domain.
WQ on CPU0, prefer CPU1
CPU1 attaching NULL sched-domain.
CPU0 attaching sched-domain:
domain 0: span 0 level CPU
groups: 0
WQ on CPU0, prefer CPU1
WQ on CPU0, prefer CPU1
WQ on CPU0, prefer CPU1
[repeat last message indefinitely]
Here is onlining:
Booting processor 1/1 ip 6000
Initializing CPU#1
WQ on C...
| Aug 18, 5:08 pm 2008 |
| Rafael J. Wysocki | Re: oprofile + hibernation = badness
Well, I don't know who's the right person to ask about the CPU hotplug.
Andrew, can you help please?
Rafael
--
| Aug 18, 5:15 pm 2008 |
| Andrew Morton | Re: oprofile + hibernation = badness
On Mon, 18 Aug 2008 23:15:59 +0200
The CPU hotplug maintainer is basically "everyone", because many
subsystems need to interact correctly with hotplugging, and many
subsystems can break it.
This one looks like a clocksource/apic/resume problem? Probably the
next port of call would be Thomas, with Robert looking on.
--
| Aug 18, 5:29 pm 2008 |
| Bartlomiej Zolnierki... | [git pull] IDE fixes
Hi,
Inside:
* Some IDE PCI host drivers were not using __devexit_p() properly
(Russell King discovered it the hard way & Adrian Bunk fixed it).
* Fix audio capabilities checking in cdrom.c (from Alexander Inyukhin
with gdrom/viocd pre-fixes from Borislav Petkov).
* Add missing ATA_* defines to <linux/ata.h>, not fixes per-se
but since they are obvious and merging it now will save us some
merge conflicts in linux-next lets do it now.
* Misc obvious fixups/cleanups.
*...
| Aug 18, 4:22 pm 2008 |
| Alex Chiang | [PATCH] PCI: create device, function symlinks in /sys/bus/pc...
Create convenience symlinks in sysfs, linking slots to devices
and functions, and vice versa. These links make it easier for
users to figure out which devices actually live in what slots.
The device symlink points to the device's first function.
For example:
sapphire:/sys/bus/pci/slots # ls
1 10 2 3 4 5 6 7 8 9
sapphire:/sys/bus/pci/slots # ls -l 3
total 0
-r--r--r-- 1 root root 65536 Aug 18 14:10 address
lrwxrwxrwx 1 root root 0 Aug 18 14:10 device -> ../../../../devices/p...
| Aug 18, 4:21 pm 2008 |
| Gary Hade | Re: [PATCH] PCI: create device, function symlinks in /sys/bu...
This looks it would be quite useful but the symlinks are not adjusted
during hot-add and hot-remove operations (e.g. stale symlinks persist
after hot-remove and new symlinks are not created in response to hot-add)
so it could confuse more than help on systems with PCI hotplug support.
Gary
--
Gary Hade
System x Enablement
IBM Linux Technology Center
503-578-4503 IBM T/L: 775-4503
garyhade@us.ibm.com
http://www.ibm.com/linux/ltc
--
| Aug 18, 7:19 pm 2008 |
| H. Peter Anvin | Re: [PATCH] PCI: create device, function symlinks in /sys/bu...
What's the point with "device" and "function0"? They appear to be the
same thing by definition.
-hpa
--
| Aug 18, 6:03 pm 2008 |
| Greg KH | Re: [PATCH] PCI: create device, function symlinks in /sys/bu...
As you are adding new sysfs files/symlinks, please document them in
Documentation/ABI.
thanks,
greg k-h
--
| Aug 18, 4:46 pm 2008 |
| Bernd Schubert | Re: Linux 2.6.26 edac errors and ASUS P5W DH Deluxe motherbo...
Do have an IPMI card installed in these systems? Know issue here with Asus
boards + IPMI, you then need to disable a few ipmi sensors.
Cheers,
Bernd
--
| Aug 18, 3:49 pm 2008 |
| Jiri Slaby | [PATCH 1/2] Ath5k: lock beacons
Beacons setup and config was racy with beacon send. Ensure that
ISR and reset functions see consistent state of bbuf.
Use also dev_kfree_skb_any in ath5k_txbuf_free since we call it
from atomic now.
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Nick Kossifidis <mickflemm@gmail.com>
Cc: Luis R. Rodriguez <mcgrof@gmail.com>
---
drivers/net/wireless/ath5k/base.c | 15 ++++++++++++---
drivers/net/wireless/ath5k/base.h | 1 +
2 files changed, 13 insertions(+), 3 deleti...
| Aug 18, 3:45 pm 2008 |
| Jiri Slaby | [PATCH 2/2] Ath5k: fix bintval setup
bintval is set to the initial value at .config_interface which is too
late, since it overwrites previously set value from .config. Move the
initialization to the .add_interface.
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Nick Kossifidis <mickflemm@gmail.com>
Cc: Luis R. Rodriguez <mcgrof@gmail.com>
---
drivers/net/wireless/ath5k/base.c | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wirele...
| Aug 18, 3:45 pm 2008 |
| Vegard Nossum | latest -git: [x86/oprofile] BUG: using smp_processor_id() in...
Hi,
Just got this on latest -git (+ unrelated build fix):
BUG: using smp_processor_id() in preemptible [00000000] code: oprofiled/4133
APIC error on CPU1: 00(40)
APIC error on CPU0: 00(40)
APIC error on CPU1: 40(40)
APIC error on CPU0: 40(40)
caller is get_stagger+0x9/0x30
Pid: 4133, comm: oprofiled Not tainted 2.6.27-rc3-00415-g122c9e0 #9
[<c037228e>] debug_smp_processor_id+0xce/0xd0
[<c0583d19>] get_stagger+0x9/0x30
[<c05843de>] p4_fill_in_addresses+0x1e/0x3a0
[<c0...
| Aug 18, 3:42 pm 2008 |
| Paolo Ciarrocchi | [PATCH] x86: Coding style fixes to arch/x86/oprofile/op_mode...
Ingo, Robert,
From: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
A coding style patch to arch/x86/oprofile/op_model_p4.c that
removes 87 errors and 4 warnings.
Before:
total: 89 errors, 13 warnings, 722 lines checked
After:
total: 2 errors, 9 warnings, 721 lines checked
Compile tested, binary verified as follow:
paolo@paolo-desktop:~/linux.trees.git$ size /tmp/op_model_p4.o.*
text data bss dec hex filename
2691 968 32 3691 e6b /tmp/op_model_...
| Aug 18, 3:25 pm 2008 |
| Greg KH | [patch 00/49] 2.6.25-stable review
This is the start of the stable review cycle for the 2.6.25.16 release.
There are 49 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 ...
| Aug 18, 3:18 pm 2008 |
| Greg KH | [patch 49/49] qla2xxx: Set an rports dev_loss_tmo value in a...
2.6.25-stable review patch. If anyone has any objections, please let us know.
------------------
From: Andrew Vasquez <andrew.vasquez@qlogic.com>
[ Upstream commit 85821c906cf3563a00a3d98fa380a2581a7a5ff1 ]
As there's no point in adding a fixed-fudge value (originally 5
seconds), honor the user settings only. We also remove the
driver's dead-callback get_rport_dev_loss_tmo function
(qla2x00_get_rport_loss_tmo()).
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Sign...
| Aug 18, 3:21 pm 2008 |
| Greg KH | [patch 48/49] qla2xxx: Add dev_loss_tmo_callbk/terminate_rpo...
2.6.25-stable review patch. If anyone has any objections, please let us know.
------------------
From: Seokmann Ju <seokmann.ju@qlogic.com>
[ Upstream commit 5f3a9a207f1fccde476dd31b4c63ead2967d934f ]
Signed-off-by: Seokmann Ju <seokmann.ju@qlogic.com>
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
drivers/scsi/qla2xxx/qla...
| Aug 18, 3:21 pm 2008 |
| Greg KH | [patch 47/49] x86: fix setup code crashes on my old 486 box
2.6.25-stable review patch. If anyone has any objections, please let us know.
------------------
From: Joerg Roedel <joro@8bytes.org>
commit 7b27718bdb1b70166383dec91391df5534d449ee upstream
yesterday I tried to reactivate my old 486 box and wanted to install a
current Linux with latest kernel on it. But it turned out that the
latest kernel does not boot because the machine crashes early in the
setup code.
After some debugging it turned out that the problem is the query_ist()
funct...
| Aug 18, 3:21 pm 2008 |
| Greg KH | [patch 46/49] x86: fix spin_is_contended()
2.6.25-stable review patch. If anyone has any objections, please let us know.
------------------
From: Jan Beulich <jbeulich@novell.com>
commit 7bc069c6bc4ede519a7116be1b9e149a1dbf787a upstream
The masked difference is what needs to be compared against 1, rather
than the difference of masked values (which can be negative).
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Acked-by: Nick Piggin <npiggin@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-...
| Aug 18, 3:21 pm 2008 |
| Greg KH | [patch 45/49] CIFS: Fix compiler warning on 64-bit
2.6.25-stable review patch. If anyone has any objections, please let us know.
------------------
From: Jan Beulich <jbeulich@novell.com>
commit 04e1e0cccade330ab3715ce59234f7e3b087e246 upstream.
Signed-off-by: Steve French <sfrench@us.ibm.com>
Cc: Eugene Teo <eteo@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
fs/cifs/asn1.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/fs/cifs/asn1.c
+++ b/fs/cifs/asn1.c
@@ -400,7 +400,7...
| Aug 18, 3:20 pm 2008 |
| previous day | today | next day |
|---|---|---|
| August 17, 2008 | August 18, 2008 | August 19, 2008 |
| Ian Campbell | Re: [PATCH] x86: Construct 32 bit boot time page tables in native format. |
| Greg Kroah-Hartman | [PATCH 001/196] Chinese: Add the known_regression URI to the HOWTO |
| Justin Piszcz | Linux Software RAID 5 Performance Optimizations: 2.6.19.1: (211MB/s read & 195... |
| Alan | Re: [RFC] Heads up on sys_fallocate() |
| Matthias Scheler | Re: HEADS UP: timecounters (branch simonb-timecounters) merged into -current |
| David Laight | long usernames |
| Quentin Garnier | Re: Understanding foo_open, foo_read, etc. |
| Jared D. McNeill | Breaking binary compatibility for /dev/joy |
git: | |
| Jarek Poplawski | [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Gerrit Renker | [PATCH 0/37] dccp: Feature negotiation - last call for comments |
| David Miller | [GIT]: Networking |
| Natalie Protasevich | [BUG] New Kernel Bugs |
