[PATCH 1/5] Revert driver core: refcounting fix

2007-03-09 Thread Greg Kroah-Hartman
This reverts commit 63ce18cfe685115ff8d341bae4c9204a79043cf0. It was the incorrect fix and causes a reference counting bug whenever any driver module is removed from the system. Mike Galbraith [EMAIL PROTECTED] is looking for the real fix for his problem. Signed-off-by: Greg Kroah-Hartman [EMAIL

[PATCH 2/5] Driver core: add device symlink back to sysfs

2007-03-09 Thread Greg Kroah-Hartman
network connections. Cc: Kay Sievers [EMAIL PROTECTED] Cc: Matt Mackall [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/base/core.c | 21 + 1 files changed, 13 insertions(+), 8 deletions(-) diff --git a/drivers/base/core.c b/drivers/base/core.c

[PATCH 5/5] kobject: new_device-kref wasn't putted after error in kobject_move()

2007-03-09 Thread Greg Kroah-Hartman
From: Dmitriy Monakhov [EMAIL PROTECTED] If error happen we jump to out label, in this case new_device not yet became the parent but it wasn't putted. Signed-off-by: Monakhov Dmitriy [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- lib/kobject.c |2 ++ 1 files

[PATCH 3/5] Remove devfs from MAINTAINERS

2007-03-09 Thread Greg Kroah-Hartman
From: Jörn Engel [EMAIL PROTECTED] Remove last remaining trace of devfs. Signed-off-by: Jörn Engel [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- MAINTAINERS |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index

[PATCH 4/5] driver core: export device_rename

2007-03-09 Thread Greg Kroah-Hartman
From: Johannes Berg [EMAIL PROTECTED] In wireless we'd like to allow renaming of the phy devices we surface in sysfs. The base wireless code, however, can be built modular and thus we need device_rename exported. Signed-off-by: Johannes Berg [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman

[PATCH 2/4] pcie: fix section mismatch warning

2007-03-09 Thread Greg Kroah-Hartman
' This warning was fixed by renaming pcie_portdrv to pcie_portdriver so we pass the whitelist. Signed-off-by: Sam Ravnborg [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/pci/pcie/portdrv_pci.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff

[PATCH 1/4] PCI: allow multiple calls to pcim_pin_device()

2007-03-09 Thread Greg Kroah-Hartman
[EMAIL PROTECTED] Acked-by: Ian McDonald [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/pci/pci.c | 15 --- 1 files changed, 8 insertions(+), 7 deletions(-) diff --git a/drivers/pci/pci.c b/drivers/pci

[PATCH 3/4] PCI: aer: fix section mismatch warning

2007-03-09 Thread Greg Kroah-Hartman
by renaming aerdrv to aerdriver so we pass the whitelist. Signed-off-by: Sam Ravnborg [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/pci/pcie/aer/aerdrv.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/pci/pcie/aer/aerdrv.c b

[PATCH 4/4] pci: fix section mismatch warning

2007-03-09 Thread Greg Kroah-Hartman
to pci_find_bus() calling a function marked __devinit. Fix was to remove the __devinit from the offending function. Signed-off-by: Sam Ravnborg [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/pci/search.c |2 +- 1 files changed, 1 insertions(+), 1 deletions

[PATCH 01/10] Driver.h copyright update

2007-02-16 Thread Greg Kroah-Hartman
It was pointed out that I had not updated my copyright on driver.h Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- include/linux/device.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/device.h b/include/linux/device.h index 26e4692..d5b1b7b 100644

[PATCH 02/10] Driver core: let request_module() send a /sys/modules/kmod/-uevent

2007-02-16 Thread Greg Kroah-Hartman
] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- include/linux/kmod.h |2 + kernel/kmod.c| 120 ++ kernel/module.c | 26 +++ kernel/params.c |1 + 4 files changed, 139 insertions(+), 10 deletions(-) diff

[PATCH 03/10] serial: Add PCMCIA IDs for Quatech DSP-100 dual RS232 adapter.

2007-02-16 Thread Greg Kroah-Hartman
From: Sergei Organov [EMAIL PROTECTED] Add PCMCIA IDs for Quatech DSP-100 dual RS232 adapter. Signed-off-by: Sergei Organov [EMAIL PROTECTED] Acked-by: Alan Cox [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/serial/serial_cs.c |5 + include/pcmcia

[PATCH 04/10] kobject: kobj-k_name verification fix

2007-02-16 Thread Greg Kroah-Hartman
the missing '*' without changing the coding style of the function. Signed-off-by: Martin Stoilov [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- lib/kobject.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff

[PATCH 05/10] Driver: remove redundant kobject_unregister checks

2007-02-16 Thread Greg Kroah-Hartman
From: Mariusz Kozlowski [EMAIL PROTECTED] Here is a patch that removes all redundant kobject_unregister argument checks. Signed-off-by: Mariusz Kozlowski [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/base/class.c |3 +-- fs/partitions/check.c |9

[PATCH 06/10] debugfs: implement symbolic links

2007-02-16 Thread Greg Kroah-Hartman
). Signed-off-by: Peter Oberparleiter [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- fs/debugfs/file.c | 12 +++ fs/debugfs/inode.c | 76 -- include/linux/debugfs.h | 10 ++ 3 files changed, 94 insertions

[PATCH 07/10] debugfs: Remove misleading comments.

2007-02-16 Thread Greg Kroah-Hartman
From: Cornelia Huck [EMAIL PROTECTED] Just mention which error will be returned if debugfs is disabled. Callers should be able to figure out themselves what they need to check. Signed-off-by: Cornelia Huck [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- fs/debugfs

[PATCH 10/10] sysfs: fix build errors: uevent with CONFIG_SYSFS=n

2007-02-16 Thread Greg Kroah-Hartman
Kroah-Hartman [EMAIL PROTECTED] --- include/linux/module.h | 53 +++--- include/linux/moduleparam.h | 12 + kernel/module.c | 14 --- kernel/params.c | 28 -- 4 files changed, 81 insertions

[PATCH 08/10] Driver core: device_add_attrs() cleanup

2007-02-16 Thread Greg Kroah-Hartman
From: Andrew Morton [EMAIL PROTECTED] Clean up the coding in device_add_attrs() a bit. Cc: Jean Delvare [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/base/bus.c | 22 ++ 1 files changed, 10

[PATCH 09/10] pcmcia: some class_device fallout

2007-02-16 Thread Greg Kroah-Hartman
-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/pcmcia/at91_cf.c|2 +- drivers/pcmcia/soc_common.c |8 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/pcmcia/at91_cf.c b/drivers/pcmcia/at91_cf.c index

[PATCH 1/9] Driver core: remove class_device_rename

2007-02-23 Thread Greg Kroah-Hartman
No one uses it, and it wasn't exported to modules, so remove it. The only other user of it was the network code, which is now converted to use struct device instead. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/base/class.c | 42

[PATCH 7/9] make kernel/kmod.c:kmod_mk static

2007-02-23 Thread Greg Kroah-Hartman
From: Adrian Bunk [EMAIL PROTECTED] This patch makes the needlessly global struct kmod_mk static. Signed-off-by: Adrian Bunk [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- kernel/kmod.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kernel

[PATCH 5/9] power management: no valid states w/o pm_ops

2007-02-23 Thread Greg Kroah-Hartman
: Randy.Dunlap [EMAIL PROTECTED] Cc: Rafael J. Wysocki [EMAIL PROTECTED] Cc: Pavel Macheck [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- kernel/power/main.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git

[PATCH 6/9] power management: fix struct layout and docs

2007-02-23 Thread Greg Kroah-Hartman
the structure on 64-bit platforms. Signed-off-by: Johannes Berg [EMAIL PROTECTED] Cc: Randy.Dunlap [EMAIL PROTECTED] Cc: Rafael J. Wysocki [EMAIL PROTECTED] Cc: Pavel Macheck [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- include

[PATCH 8/9] Driver core: fix error by cleanup up symlinks properly

2007-02-23 Thread Greg Kroah-Hartman
apply. Thank you. Signed-Off: James Simmons [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/base/core.c | 31 ++- 1 files changed, 30 insertions(+), 1 deletions(-) diff --git a/drivers/base/core.c b/drivers/base/core.c index d04fd33

[PATCH 4/9] Driver core: more fallout from class_device changes for pcmcia

2007-02-23 Thread Greg Kroah-Hartman
From: Manuel Lauss [EMAIL PROTECTED] More fallout from the PCMCIA class_device changes. The first hunk is run-tested on SH-4, the others are converted in the spirit of the original conversion. Signed-off-by: Manuel Lauss [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED

[PATCH 9/9] Revert Driver core: let request_module() send a /sys/modules/kmod/-uevent

2007-02-23 Thread Greg Kroah-Hartman
This reverts commit c353c3fb0700a3c17ea2b0237710a184232ccd7f. It turns out that we end up with a loop trying to load the unix module and calling netfilter to do that. Will redo the patch later to not have this loop. Acked-by: Kay Sievers [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman

[PATCH 2/9] driver core: refcounting fix

2007-02-23 Thread Greg Kroah-Hartman
Galbraith [EMAIL PROTECTED] Cc: Kay Sievers [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- kernel/module.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/kernel/module.c b/kernel/module.c index

[PATCH 3/9] sysfs: move struct sysfs_dirent to private header

2007-02-23 Thread Greg Kroah-Hartman
else in the kernel dereferences it. I have been running this patch for years. Please integrate and forward upstream if there are no objections. From: Adam J. Richter [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- fs/sysfs/sysfs.h | 11 +++ include/linux

Linux 2.6.23.13

2008-01-09 Thread Greg Kroah-Hartman
insertions(+), 15 deletions(-) Summary of changes from v2.6.23.12 to v2.6.23.13 Greg Kroah-Hartman (1): Linux 2.6.23.13 Jean Delvare (1): hwmon: (w83627ehf) Be more careful when changing VID input level -- To unsubscribe from this list

Re: Linux 2.6.23.13

2008-01-09 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index 96c3f02..55edf2f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 23 -EXTRAVERSION = .12 +EXTRAVERSION = .13 NAME = Arr Matey! A Hairy Bilge Rat! # *DOCUMENTATION* diff --git a/drivers/hwmon/w83627ehf.c

Re: Linux 2.6.23.14

2008-01-14 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index 55edf2f..5c31700 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 23 -EXTRAVERSION = .13 +EXTRAVERSION = .14 NAME = Arr Matey! A Hairy Bilge Rat! # *DOCUMENTATION* diff --git a/fs/namei.c b/fs/namei.c index

Linux 2.6.23.14

2008-01-14 Thread Greg Kroah-Hartman
/git/stable/linux-2.6.23.y.git;a=summary thanks, greg k-h Makefile |2 +- fs/namei.c |4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) Summary of changes from v2.6.23.13 to v2.6.23.14 Greg Kroah-Hartman (1): Linux

Re: Linux 2.6.22.16

2008-01-14 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index a8bdcc6..99c0237 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 22 -EXTRAVERSION = .15 +EXTRAVERSION = .16 NAME = Holy Dancing Manatees, Batman! # *DOCUMENTATION* diff --git a/fs/namei.c b/fs/namei.c index

Linux 2.6.22.16

2008-01-14 Thread Greg Kroah-Hartman
/git/stable/linux-2.6.22.y.git;a=summary thanks, greg k-h Makefile |2 +- fs/namei.c |4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) Summary of changes from v2.6.22.15 to v2.6.22.16 Greg Kroah-Hartman (1): Linux

warning, huge 2.6.23-stable review cycle about to start

2007-11-14 Thread Greg Kroah-Hartman
Ok, I've been slacking on the -stable front for a bit here, and didn't realize how far behind I've gotten. Everyone has been sending patches in, which is great, but now we are facing a HUGE 114 patch release. As there's no real way that everyone can review all of these patches, I've decided to

[patch 02/40] i915: fix vbl swap allocation size.

2007-11-14 Thread Greg Kroah-Hartman
-stable review patch. If anyone has any objections, please let us know. -- From: Dave Airlie [EMAIL PROTECTED] This is upstream as 54583bf4efda79388fc13163e35c016c8bc5de81 Oops... Signed-off-by: Dave Airlie [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED

[patch 04/40] hwmon/w83627hf: Dont assume bank 0

2007-11-14 Thread Greg Kroah-Hartman
.) Signed-off-by: Jean Delvare [EMAIL PROTECTED] Signed-off-by: Mark M. Hoffman [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/hwmon/w83627hf.c | 44 ++-- 1 file changed, 22 insertions(+), 22 deletions(-) --- a/drivers/hwmon

[patch 05/40] hwmon/lm87: Fix a division by zero

2007-11-14 Thread Greg Kroah-Hartman
in the definition of FAN_FROM_REG cause a division by zero for a specific register value. Signed-off-by: Jean Delvare [EMAIL PROTECTED] Acked-by: Hans de Goede [EMAIL PROTECTED] Signed-off-by: Mark M. Hoffman [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/hwmon

[patch 06/40] hwmon/lm87: Disable VID when it should be

2007-11-14 Thread Greg Kroah-Hartman
shifting bug caused the VID value to be always exported even when the hardware is configured for something different. Signed-off-by: Jean Delvare [EMAIL PROTECTED] Signed-off-by: Mark M. Hoffman [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/hwmon/lm87.c |2 +- 1

[patch 07/40] IB/uverbs: Fix checking of userspace object ownership

2007-11-14 Thread Greg Kroah-Hartman
their own objects, because this bug was introduced in June 2006 in 2.6.18, and has gone undetected until now. Signed-off-by: Roland Dreier [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/infiniband/core/uverbs_cmd.c |8 ++-- 1 file changed, 6 insertions(+), 2

[patch 08/40] IB/mthca: Use mmiowb() to avoid firmware commands getting jumbled up

2007-11-14 Thread Greg Kroah-Hartman
issued (even with the mutex). Fix this by adding an mmiowb() before dropping the mutex. Tested-by: Arthur Kepner [EMAIL PROTECTED] Signed-off-by: Roland Dreier [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/infiniband/hw/mthca/mthca_cmd.c |6 ++ 1 file

[patch 09/40] ALSA: hda-codec - Avoid zero NID in line_out_pinsof STAC codecs

2007-11-14 Thread Greg Kroah-Hartman
[] for shared mic/line-inputs accordingly. But, the current code may give a hole with NID=0 in some setting, which results in an error at probe. This patch fixes the problem. Signed-off-by: Takashi Iwai [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- sound/pci/hda

[patch 10/40] ALSA: fix selector unit bug affecting some USB speakerphones

2007-11-14 Thread Greg Kroah-Hartman
[EMAIL PROTECTED] Signed-off-by: Takashi Iwai [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- sound/usb/usbmixer.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/sound/usb/usbmixer.c +++ b/sound/usb/usbmixer.c @@ -1483,7 +1483,7 @@ static int

[patch 11/40] ALSA: Fix build error without CONFIG_HAS_DMA

2007-11-14 Thread Greg Kroah-Hartman
-broken.h breaks the build without CONFIG_HAS_DMA. This patch is an ad hoc fix. Signed-off-by: Takashi Iwai [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- sound/core/Makefile |3 ++- sound/core/memalloc.c |6 ++ 2 files changed, 8 insertions(+), 1 deletion

[patch 12/40] ALSA: emu10k1 - Fix memory corruption

2007-11-14 Thread Greg Kroah-Hartman
with the actual array size (3). This may result in a memory corruption that overwrites the i2c_capture_source field (ALSA bug#3095). Signed-off-by: Takashi Iwai [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- sound/pci/emu10k1/emumixer.c |4 ++-- 1 file changed, 2

[patch 13/40] ALSA: hdsp - Fix zero division

2007-11-14 Thread Greg Kroah-Hartman
] Signed-off-by: Jaroslav Kysela [EMAIL PROTECTED] Cc: Maarten Bressers [EMAIL PROTECTED] Cc: gentoo kernel [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- sound/pci/rme9652/hdsp.c |3 +++ 1 file changed, 3 insertions(+) --- a/sound/pci/rme9652/hdsp.c +++ b/sound/pci

[patch 14/40] libata: sync NCQ blacklist with upstream

2007-11-14 Thread Greg Kroah-Hartman
Garzik [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/ata/libata-core.c |8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c @@ -3793,11 +3793,17 @@ static const struct ata_blacklist_entry

[patch 15/40] dm delay: fix status

2007-11-14 Thread Greg Kroah-Hartman
. Signed-off-by: Milan Broz [EMAIL PROTECTED] Signed-off-by: Alasdair G Kergon [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/md/dm-delay.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/md/dm-delay.c +++ b/drivers/md/dm-delay.c @@ -305,7

[patch 16/40] dm: fix thaw_bdev

2007-11-14 Thread Greg Kroah-Hartman
-suspended_bdev is non-NULL and that can happen only when the device was suspended without noflush. Signed-off-by: Jun'ichi Nomura [EMAIL PROTECTED] Signed-off-by: Alasdair G Kergon [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/md/dm.c |4 +++- 1 file changed

[patch 17/40] md: fix an unsigned compare to allow creation of bitmaps with v1.0 metadata

2007-11-14 Thread Greg Kroah-Hartman
. Signed-off-by: Neil Brown [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Linus Torvalds [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/md/bitmap.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/md

[patch 18/40] md: raid5: fix clearing of biofill operations

2007-11-14 Thread Greg Kroah-Hartman
PROTECTED] Tested-by: Joel Bertrand [EMAIL PROTECTED] Signed-off-by: Neil Brown [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/md/raid5.c | 17 ++--- 1 file changed, 14 insertions(+), 3 deletions(-) --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c

[patch 19/40] MSI: Use correct data offset for 32-bit MSI in read_msi_msg()

2007-11-14 Thread Greg Kroah-Hartman
MSI address capability, I noticed that read_msi_msg() seems to read the message data from the wrong offset in this case. Signed-off-by: Roland Dreier [EMAIL PROTECTED] Acked-by: Eric W. Biederman [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/pci/msi.c |2

[patch 21/40] usb-gadget-ether: prevent oops caused by error interrupt race

2007-11-14 Thread Greg Kroah-Hartman
[EMAIL PROTECTED] Signed-off-by: Thomas Gleixner [EMAIL PROTECTED] Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget/ether.c | 12 1 file changed, 12 insertions

[patch 20/40] USB: remove USB_QUIRK_NO_AUTOSUSPEND

2007-11-14 Thread Greg Kroah-Hartman
to do. Signed-off-by: Alan Stern [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/quirks.c | 81 - include/linux/usb/quirks.h |7 +-- 2 files changed, 3 insertions(+), 85 deletions(-) --- a/drivers/usb

[patch 22/40] USB: mutual exclusion for EHCI init and port resets

2007-11-14 Thread Greg Kroah-Hartman
mutually exclusive. Signed-off-by: Alan Stern [EMAIL PROTECTED] Acked-by: David Brownell [EMAIL PROTECTED] Cc: David Miller [EMAIL PROTECTED] Cc: Dely L Sy [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/hcd.h |8 +++- drivers/usb/core/hub.c

[patch 23/40] USB: add URB_FREE_BUFFER to permissible flags

2007-11-14 Thread Greg Kroah-Hartman
-off-by: Oliver Neukum [EMAIL PROTECTED] Acked-by: Marcel Holtmann [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/urb.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/usb/core/urb.c +++ b/drivers/usb/core/urb.c @@ -358,7 +358,7

[patch 24/40] USB: usbserial - fix potential deadlock between write() and IRQ

2007-11-14 Thread Greg Kroah-Hartman
-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/generic.c |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) --- a/drivers/usb/serial/generic.c +++ b/drivers/usb/serial/generic.c @@ -208,14 +208,15 @@ int usb_serial_generic_write(struct usb_ /* only do

[patch 26/40] i4l: Fix random hard freeze with AVM c4 card

2007-11-14 Thread Greg Kroah-Hartman
PROTECTED] Signed-off-by: Rainer Brestan [EMAIL PROTECTED] Signed-off-by: Ralf Schlatterbeck [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Linus Torvalds [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/isdn/hardware/avm/c4.c | 14

[patch 27/40] i4l: fix random freezes with AVM B1 drivers

2007-11-14 Thread Greg Kroah-Hartman
-off-by: Linus Torvalds [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/isdn/hardware/avm/b1.c | 28 +--- 1 file changed, 13 insertions(+), 15 deletions(-) --- a/drivers/isdn/hardware/avm/b1.c +++ b/drivers/isdn/hardware/avm/b1.c @@ -321,12

[patch 28/40] ide: fix serverworks.c UDMA regression

2007-11-14 Thread Greg Kroah-Hartman
fixes the problem. Signed-off-by: Tony Battersby [EMAIL PROTECTED] Signed-off-by: Bartlomiej Zolnierkiewicz [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/ide/pci/serverworks.c |1 + 1 file changed, 1 insertion(+) --- a/drivers/ide/pci/serverworks.c +++ b

[patch 29/40] ide: Add ide_get_paired_drive() helper

2007-11-14 Thread Greg Kroah-Hartman
-by: Benjamin Herrenschmidt [EMAIL PROTECTED] Cc: Andrew Morton [EMAIL PROTECTED] Acked-by: Sergei Shtylyov [EMAIL PROTECTED] Signed-off-by: Bartlomiej Zolnierkiewicz [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- include/linux/ide.h |7 +++ 1 file changed, 7

[patch 30/40] ide: Fix siimage driver accessing beyond array boundary

2007-11-14 Thread Greg Kroah-Hartman
] Signed-off-by: Bartlomiej Zolnierkiewicz [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/ide/pci/siimage.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/ide/pci/siimage.c +++ b/drivers/ide/pci/siimage.c @@ -180,7 +180,7 @@ static void

[patch 25/40] ALSA: hda-codec - Add array terminator for dmic in STAC codec

2007-11-14 Thread Greg Kroah-Hartman
. The dmic array is passed to snd_hda_parse_pin_def_config() and should be zero-terminated. Signed-off-by: Takashi Iwai [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- sound/pci/hda/patch_sigmatel.c | 14 -- 1 file changed, 8 insertions(+), 6 deletions

[patch 31/40] ide: Fix cs5535 driver accessing beyond array boundary

2007-11-14 Thread Greg Kroah-Hartman
] Signed-off-by: Bartlomiej Zolnierkiewicz [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/ide/pci/cs5535.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/ide/pci/cs5535.c +++ b/drivers/ide/pci/cs5535.c @@ -84,7 +84,7 @@ static void

[patch 32/40] hptiop: avoid buffer overflow when returning sense data

2007-11-14 Thread Greg Kroah-Hartman
-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/scsi/hptiop.c |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/drivers/scsi/hptiop.c +++ b/drivers/scsi/hptiop.c @@ -365,8 +365,9 @@ static void hptiop_host_request_callback

[patch 33/40] Char: rocket, fix dynamic_dev tty

2007-11-14 Thread Greg Kroah-Hartman
they are plugged). Signed-off-by: Jiri Slaby [EMAIL PROTECTED] Cc: Ferenc Wagner [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Linus Torvalds [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/char/rocket.c | 14 +- 1

[patch 34/40] Char: moxa, fix and optimise empty timer

2007-11-14 Thread Greg Kroah-Hartman
PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/char/moxa.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/char/moxa.c +++ b/drivers/char/moxa.c @@ -1040,14 +1040,14 @@ static void check_xmit_empty(unsigned lo struct moxa_port *ch

[patch 35/40] radeon: set the address to access the GART table on the CPU side correctly

2007-11-14 Thread Greg Kroah-Hartman
with I noticed that this isn't always true. This fixes issues seen on some r400 cards. (bugs.freedesktop.org 9957) Signed-off-by: Dave Airlie [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/char/drm/radeon_cp.c |5 +++-- drivers/char/drm/radeon_drv.h |1

[patch 36/40] libata: add HTS542525K9SA00 to NCQ blacklist

2007-11-14 Thread Greg Kroah-Hartman
: Luca Tettamanti [EMAIL PROTECTED] Signed-off-by: Jeff Garzik [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/ata/libata-core.c |1 + 1 file changed, 1 insertion(+) --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c @@ -3795,6 +3795,7 @@ static

[patch 37/40] libata: backport ATA_FLAG_NO_SRST and ATA_FLAG_ASSUME_ATA

2007-11-14 Thread Greg Kroah-Hartman
-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/ata/libata-eh.c | 32 include/linux/libata.h |2 ++ 2 files changed, 26 insertions(+), 8 deletions(-) --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c @@ -1759,9 +1759,11 @@ static int

[patch 38/40] libata: backport ATA_FLAG_NO_SRST and ATA_FLAG_ASSUME_ATA, part 2

2007-11-14 Thread Greg Kroah-Hartman
. This workaround fixes bugzilla #8923. http://bugzilla.kernel.org/show_bug.cgi?id=8923 Signed-off-by: Tejun Heo [EMAIL PROTECTED] Cc: Jeff Garzik [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/ata/ahci.c | 143

[patch 39/40] ACPI: sleep: Fix GPE suspend cleanup

2007-11-14 Thread Greg Kroah-Hartman
[EMAIL PROTECTED] Cc: Chuck Ebbert [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/acpi/sleep/main.c |1 + 1 file changed, 1 insertion(+) --- a/drivers/acpi/sleep/main.c +++ b/drivers/acpi/sleep/main.c @@ -389,6 +389,7 @@ static void acpi_power_off(void

[patch 40/40] ACPI: suspend: Wrong order of GPE restore.

2007-11-14 Thread Greg Kroah-Hartman
PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/acpi/sleep/main.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/acpi/sleep/main.c +++ b/drivers/acpi/sleep/main.c @@ -170,8 +170,8 @@ static int acpi_pm_finish(suspend_state_ { u32

[patch 0/3] 2.6.23-stable review, filesystem changes

2007-11-14 Thread Greg Kroah-Hartman
This is the start of the stable review cycle for the 2.6.23.X release. There are 3 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

[patch 1/3] minixfs: limit minixfs printks on corrupted dir i_size (CVE-2006-6058)

2007-11-14 Thread Greg Kroah-Hartman
[EMAIL PROTECTED] Signed-off-by: Linus Torvalds [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- fs/minix/itree_v1.c |9 +++-- fs/minix/itree_v2.c |9 +++-- 2 files changed, 14 insertions(+), 4 deletions(-) --- a/fs/minix/itree_v1.c +++ b/fs/minix/itree_v1

[patch 00/40] 2.6.23-stable review, driver (sans network) changes

2007-11-14 Thread Greg Kroah-Hartman
This is the start of the stable review cycle for the 2.6.23.X release. There are 40 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

[patch 01/40] POWERPC: Fix platinumfb framebuffer

2007-11-14 Thread Greg Kroah-Hartman
. This fixes it. Signed-off-by: Benjamin Herrenschmidt [EMAIL PROTECTED] Signed-off-by: Paul Mackerras [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/video/platinumfb.c | 48 - 1 file changed, 26 insertions(+), 22 deletions

[patch 03/40] hwmon/w83627hf: Fix setting fan min right after driver load

2007-11-14 Thread Greg Kroah-Hartman
-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/hwmon/w83627hf.c | 34 ++ 1 file changed, 22 insertions(+), 12 deletions(-) --- a/drivers/hwmon/w83627hf.c +++ b/drivers/hwmon/w83627hf.c @@ -391,6 +391,7 @@ static int __devexit w83627hf_remove(str

[patch 2/3] ocfs2: fix write() performance regression

2007-11-14 Thread Greg Kroah-Hartman
, Ocfs2_map_page_blocks() was reading blocks on appending writes. This caused write performance to suffer dramatically. Fix this by detecting an appending write on a nonsparse fs and skipping the read. Signed-off-by: Mark Fasheh [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- fs/ocfs2

[patch 3/3] NFS: Fix a writeback race...

2007-11-14 Thread Greg Kroah-Hartman
in nfs_update_request() if we see that we're creating a request that might potentially be marked as up to date. Thanks to Olivier Paquet for reporting the bug and providing a test-case. Signed-off-by: Trond Myklebust [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- fs/nfs/write.c

Re: [stable] warning, huge 2.6.23-stable review cycle about to start

2007-11-14 Thread Greg Kroah-Hartman
On Wed, Nov 14, 2007 at 09:59:02PM -0800, Greg Kroah-Hartman wrote: Ok, I've been slacking on the -stable front for a bit here, and didn't realize how far behind I've gotten. Everyone has been sending patches in, which is great, but now we are facing a HUGE 114 patch release. As there's

Linux 2.6.23.5

2007-11-16 Thread Greg Kroah-Hartman
): forcedeth: add MCP77 device IDs Dan Williams (1): ipw2100: send WEXT scan events Greg Kroah-Hartman (1): Linux 2.6.23.5 James Chapman (1): Fix L2TP oopses. Jan-Bernd Themann (1): ehea: 64K page kernel support fix John W. Linville (1): zd1201: avoid null ptr access

Re: Linux 2.6.23.4

2007-11-16 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index b0c2c32..0c34409 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 23 -EXTRAVERSION = .3 +EXTRAVERSION = .4 NAME = Arr Matey! A Hairy Bilge Rat! # *DOCUMENTATION* diff --git a/include/linux/netlink.h

Linux 2.6.23.8

2007-11-16 Thread Greg Kroah-Hartman
of changes from v2.6.23.7 to v2.6.23.8 == Greg Kroah-Hartman (1): Linux 2.6.23.8 Ilpo J??rvinen (1): TCP: Make sure write_queue_from does not begin with NULL ptr (CVE-2007-5501) Roland McGrath (1): wait_task_stopped: Check p-exit_state

Re: Linux 2.6.23.8

2007-11-16 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index c0feac2..435a3d7 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 23 -EXTRAVERSION = .7 +EXTRAVERSION = .8 NAME = Arr Matey! A Hairy Bilge Rat! # *DOCUMENTATION* diff --git a/kernel/exit.c b/kernel/exit.c index

Linux 2.6.23.2

2007-11-16 Thread Greg Kroah-Hartman
): SLUB: Fix memory leak by not reusing cpu_slab Dave Young (1): param_sysfs_builtin memchr argument fix David Miller (1): Fix compat futex hangs. Frans Pop (1): sched: keep utime/stime monotonic Greg Kroah-Hartman (1): Linux 2.6.23.2 Gregory Haskins (1): lockdep

Re: Linux 2.6.23.2

2007-11-16 Thread Greg Kroah-Hartman
diff --git a/Documentation/ja_JP/HOWTO b/Documentation/ja_JP/HOWTO index 9f08dab..d9d832c 100644 --- a/Documentation/ja_JP/HOWTO +++ b/Documentation/ja_JP/HOWTO @@ -1,4 +1,4 @@ -??NOTE: +NOTE: This is a version of Documentation/HOWTO translated into Japanese. This document is maintained by

Linux 2.6.23.3

2007-11-16 Thread Greg Kroah-Hartman
of framebuffer mmaps Dave Johnson (1): x86: fix TSC clock source calibration error David Miller (1): Fix sparc64 niagara optimized RAID xor asm Greg Kroah-Hartman (1): Linux 2.6.23.3 H. Peter Anvin (2): x86 setup: handle boot loaders which set up the stack incorrectly

Re: Linux 2.6.23.3

2007-11-16 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index c6d545c..b0c2c32 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 23 -EXTRAVERSION = .2 +EXTRAVERSION = .3 NAME = Arr Matey! A Hairy Bilge Rat! # *DOCUMENTATION* diff --git a/arch/i386/boot/boot.h

Linux 2.6.23.4

2007-11-16 Thread Greg Kroah-Hartman
Polyakov (1): Fix TEQL oops. Greg Kroah-Hartman (1): Linux 2.6.23.4 Herbert Xu (3): Fix SKB_WITH_OVERHEAD calculations. TCP: Fix size calculation in sk_stream_alloc_pskb Fix crypto_alloc_comp() error checking. Ingo Molnar (1): Fix 9P protocol build Johannes Berg

Re: Linux 2.6.23.5

2007-11-16 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index 0c34409..e11814e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 23 -EXTRAVERSION = .4 +EXTRAVERSION = .5 NAME = Arr Matey! A Hairy Bilge Rat! # *DOCUMENTATION* diff --git a/drivers/net/ehea/ehea_qmr.c

Linux 2.6.23.6

2007-11-16 Thread Greg Kroah-Hartman
allocation size. radeon: set the address to access the GART table on the CPU side correctly Greg Kroah-Hartman (1): Linux 2.6.23.6 HighPoint Linux Team (1): hptiop: avoid buffer overflow when returning sense data Jean Delvare (4): hwmon/w83627hf: Fix setting fan min right

Re: Linux 2.6.23.6

2007-11-16 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index e11814e..798ffe9 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 23 -EXTRAVERSION = .5 +EXTRAVERSION = .6 NAME = Arr Matey! A Hairy Bilge Rat! # *DOCUMENTATION* diff --git a/drivers/acpi/sleep/main.c

Linux 2.6.23.7

2007-11-16 Thread Greg Kroah-Hartman
(1): minixfs: limit minixfs printks on corrupted dir i_size (CVE-2006-6058) Greg Kroah-Hartman (1): Linux 2.6.23.7 Mark Fasheh (1): ocfs2: fix write() performance regression Trond Myklebust (1): NFS: Fix a writeback race... - To unsubscribe from this list: send the line

Re: Linux 2.6.23.7

2007-11-16 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index 798ffe9..c0feac2 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 23 -EXTRAVERSION = .6 +EXTRAVERSION = .7 NAME = Arr Matey! A Hairy Bilge Rat! # *DOCUMENTATION* diff --git a/fs/minix/itree_v1.c

Linux 2.6.22.13

2007-11-16 Thread Greg Kroah-Hartman
+- kernel/exit.c|3 +-- net/ipv4/tcp_input.c |5 + 3 files changed, 7 insertions(+), 3 deletions(-) Summary of changes from v2.6.22.12 to v2.6.22.13 Greg Kroah-Hartman (1): Linux 2.6.22.13 Ilpo J??rvinen (1): TCP: Make

Re: Linux 2.6.22.13

2007-11-16 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index b55f9bf..500f6a8 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 22 -EXTRAVERSION = .12 +EXTRAVERSION = .13 NAME = Holy Dancing Manatees, Batman! # *DOCUMENTATION* diff --git a/kernel/exit.c b/kernel/exit.c

[patch 00/26] 2.6.22-stable review

2007-11-19 Thread Greg Kroah-Hartman
This is the start of the stable review cycle for the 2.6.22.14 release. There are 26 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

[patch 02/26] Fix compat futex hangs.

2007-11-19 Thread Greg Kroah-Hartman
-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- kernel/futex_compat.c | 24 +++- 1 file changed, 19 insertions(+), 5 deletions(-) --- a/kernel/futex_compat.c +++ b/kernel/futex_compat.c @@ -29,6 +29,15 @@ fetch_robust_entry(compat_uptr_t *uentry return 0; } +static void

[patch 01/26] SLUB: Fix memory leak by not reusing cpu_slab

2007-11-19 Thread Greg Kroah-Hartman
that the concurrently allocated slab fits our allocation needs. If we simply always deactivate the slab then the freelist will be properly reintegrated and the memory leak will go away. Signed-off-by: Christoph Lameter [EMAIL PROTECTED] Cc: Hugh Dickins [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL

  1   2   3   4   5   6   7   8   9   10   >