Re: Hard lockups using 3.10.0

2013-08-11 Thread Rolf Eike Beer
Borislav Petkov wrote: On Sun, Aug 11, 2013 at 08:09:19AM +0200, Rolf Eike Beer wrote: Meanwhile I found that there was a hardware defect on this machine. So if it does not happen again I will assume that this was caused by this. What hardware defect exactly? DIMMs failing...? Probably

Re: Hard lockups using 3.10.0

2013-07-11 Thread Rolf Eike Beer
Paul E. McKenney wrote: > On Thu, Jul 11, 2013 at 12:52:07PM +0200, Peter Zijlstra wrote: > > On Thu, Jul 11, 2013 at 12:07:21PM +0200, Borislav Petkov wrote: > > > On Thu, Jul 11, 2013 at 11:38:37AM +0200, Rolf Eike Beer wrote: > > > > Hi, > > > >

Re: Hard lockups using 3.10.0

2013-07-11 Thread Rolf Eike Beer
Paul E. McKenney wrote: On Thu, Jul 11, 2013 at 12:52:07PM +0200, Peter Zijlstra wrote: On Thu, Jul 11, 2013 at 12:07:21PM +0200, Borislav Petkov wrote: On Thu, Jul 11, 2013 at 11:38:37AM +0200, Rolf Eike Beer wrote: Hi, I'm running 3.10.0 (from openSUSE packages) on an Intel(R

[PATCH] ThunderLAN: remove is_eisa flag

2013-05-18 Thread Rolf Eike Beer
These 2 places are the only matches for is_eisa in the whole tree. Signed-off-by: Rolf Eike Beer --- drivers/net/ethernet/ti/tlan.c | 1 - drivers/net/ethernet/ti/tlan.h | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/net/ethernet/ti/tlan.c b/drivers/net/ethernet/ti/tlan.c index

[PATCH] ThunderLAN: remove is_eisa flag

2013-05-18 Thread Rolf Eike Beer
These 2 places are the only matches for is_eisa in the whole tree. Signed-off-by: Rolf Eike Beer eike-ker...@sf-tec.de --- drivers/net/ethernet/ti/tlan.c | 1 - drivers/net/ethernet/ti/tlan.h | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/net/ethernet/ti/tlan.c b/drivers/net

Re: [GIT PULL] parisc updates for v3.10

2013-05-13 Thread Rolf Eike Beer
> Helge Deller (2): > parisc: make default cross compiler search more robust (v3) Needs CC:stable as without this building 3.9.x is not possible in some configurations. > John David Anglin (1): > parisc: fix SMP races when updating PTE and TLB entries in entry.S Possibly also this

Re: [GIT PULL] parisc updates for v3.10

2013-05-13 Thread Rolf Eike Beer
Helge Deller (2): parisc: make default cross compiler search more robust (v3) Needs CC:stable as without this building 3.9.x is not possible in some configurations. John David Anglin (1): parisc: fix SMP races when updating PTE and TLB entries in entry.S Possibly also this as

Re: [PATCH] parisc: unbreak automounter support on 64-bit kernel with 32-bit userspace

2013-01-31 Thread Rolf Eike Beer
H. Peter Anvin wrote: > On 01/31/2013 01:42 PM, James Bottomley wrote: > > On Thu, 2013-01-31 at 13:29 -0800, H. Peter Anvin wrote: > >> On 01/31/2013 12:26 PM, James Bottomley wrote: > >>> [adding autofs list and maintainer for their perusal and ack, although > >>> this is an obvious fix to me >

Re: [PATCH] parisc: unbreak automounter support on 64-bit kernel with 32-bit userspace

2013-01-31 Thread Rolf Eike Beer
James Bottomley wrote: > [adding autofs list and maintainer for their perusal and ack, although > this is an obvious fix to me > > James] > > On Thu, 2013-01-31 at 21:01 +0100, Helge Deller wrote: > > Similiar to other 64 bit Linux targets autofs_wqt_t needs to be of type > > int > > which has a

Re: [PATCH] parisc: unbreak automounter support on 64-bit kernel with 32-bit userspace

2013-01-31 Thread Rolf Eike Beer
James Bottomley wrote: [adding autofs list and maintainer for their perusal and ack, although this is an obvious fix to me James] On Thu, 2013-01-31 at 21:01 +0100, Helge Deller wrote: Similiar to other 64 bit Linux targets autofs_wqt_t needs to be of type int which has a size of 32

Re: [PATCH] parisc: unbreak automounter support on 64-bit kernel with 32-bit userspace

2013-01-31 Thread Rolf Eike Beer
H. Peter Anvin wrote: On 01/31/2013 01:42 PM, James Bottomley wrote: On Thu, 2013-01-31 at 13:29 -0800, H. Peter Anvin wrote: On 01/31/2013 12:26 PM, James Bottomley wrote: [adding autofs list and maintainer for their perusal and ack, although this is an obvious fix to me James]

Re: [PATCH v2 0/5] Multiqueue virtio-scsi, and API for piecewise buffer submission

2012-12-18 Thread Rolf Eike Beer
Paolo Bonzini wrote: > Hi all, > > this series adds multiqueue support to the virtio-scsi driver, based > on Jason Wang's work on virtio-net. It uses a simple queue steering > algorithm that expects one queue per CPU. LUNs in the same target always > use the same queue (so that commands are not

Re: [PATCH v2 0/5] Multiqueue virtio-scsi, and API for piecewise buffer submission

2012-12-18 Thread Rolf Eike Beer
Paolo Bonzini wrote: Hi all, this series adds multiqueue support to the virtio-scsi driver, based on Jason Wang's work on virtio-net. It uses a simple queue steering algorithm that expects one queue per CPU. LUNs in the same target always use the same queue (so that commands are not

Re: [patch] [SCSI] mpt3sas: cut and paste bug storing trigger mpi

2012-12-07 Thread Rolf Eike Beer
ioc->diag_trigger_mpi is an SL_WH_MPI_TRIGGERS_T struct. There is a cut and paste error here and SL_WH_EVENT_TRIGGERS_T is used instead of SL_WH_MPI_TRIGGERS_T. Since the SL_WH_EVENT_TRIGGERS_T is smaller than SL_WH_MPI_TRIGGERS_T, it means we only clear part of the buffer. Signed-off-by:

Re: [patch] [SCSI] mpt3sas: cut and paste bug storing trigger mpi

2012-12-07 Thread Rolf Eike Beer
ioc-diag_trigger_mpi is an SL_WH_MPI_TRIGGERS_T struct. There is a cut and paste error here and SL_WH_EVENT_TRIGGERS_T is used instead of SL_WH_MPI_TRIGGERS_T. Since the SL_WH_EVENT_TRIGGERS_T is smaller than SL_WH_MPI_TRIGGERS_T, it means we only clear part of the buffer. Signed-off-by: Dan

Re: [PATCH] scsi: prevent stack buffer overflow in host_reset

2012-11-16 Thread Rolf Eike Beer
Am Donnerstag 15 November 2012, 15:51:46 schrieb Sasha Levin: > store_host_reset() has tried to re-invent the wheel to compare sysfs > strings. Unfortunately it did so poorly and never bothered to check the > input from userspace before overwriting stack with it, so something simple > as: > >

Re: [PATCH] scsi: prevent stack buffer overflow in host_reset

2012-11-16 Thread Rolf Eike Beer
Am Donnerstag 15 November 2012, 15:51:46 schrieb Sasha Levin: store_host_reset() has tried to re-invent the wheel to compare sysfs strings. Unfortunately it did so poorly and never bothered to check the input from userspace before overwriting stack with it, so something simple as: echo

Re: [PATCH] qla2xxx: silence two GCC warnings

2012-09-30 Thread Rolf Eike Beer
Am Sonntag 30 September 2012, 13:07:54 schrieb Paul Bolle: > Compiling qla_gs.o (part of the qla2xxx module) triggers two GCC > warnings: > drivers/scsi/qla2xxx/qla_gs.c: In function ‘qla2x00_fdmi_rhba’: > drivers/scsi/qla2xxx/qla_gs.c:1339:7: warning: array subscript is above > array

Re: [PATCH] qla2xxx: silence two GCC warnings

2012-09-30 Thread Rolf Eike Beer
Am Sonntag 30 September 2012, 13:07:54 schrieb Paul Bolle: Compiling qla_gs.o (part of the qla2xxx module) triggers two GCC warnings: drivers/scsi/qla2xxx/qla_gs.c: In function ‘qla2x00_fdmi_rhba’: drivers/scsi/qla2xxx/qla_gs.c:1339:7: warning: array subscript is above array bounds

Re: [PATCH] scsi: virtio-scsi: Fix address translation failure of HighMem pages used by sg list

2012-07-25 Thread Rolf Eike Beer
Am 25.07.2012 10:29, schrieb Wang Sen: When using the commands below to write some data to a virtio-scsi LUN of the QEMU guest(32-bit) with 1G physical memory(qemu -m 1024), the qemu will crash. # sudo mkfs.ext4 /dev/sdb (/dev/sdb is the virtio-scsi LUN.) # sudo mount /dev/sdb

Re: [PATCH] scsi: virtio-scsi: Fix address translation failure of HighMem pages used by sg list

2012-07-25 Thread Rolf Eike Beer
Am 25.07.2012 10:29, schrieb Wang Sen: When using the commands below to write some data to a virtio-scsi LUN of the QEMU guest(32-bit) with 1G physical memory(qemu -m 1024), the qemu will crash. # sudo mkfs.ext4 /dev/sdb (/dev/sdb is the virtio-scsi LUN.) # sudo mount /dev/sdb

Re: [PATCH V2 2/4] [SCSI] drivers/scsi/ufs: Add PCI glue driver

2012-07-13 Thread Rolf Eike Beer
Vinayak Holikatti wrote: > +static int __devinit > +ufshcd_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) > +{ > + struct ufs_hba *hba; > + void __iomem *mmio_base; > + int err; > + > + err = pci_enable_device(pdev); > + if (err) { > +

Re: [PATCH V2 2/4] [SCSI] drivers/scsi/ufs: Add PCI glue driver

2012-07-13 Thread Rolf Eike Beer
Vinayak Holikatti wrote: +static int __devinit +ufshcd_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) +{ + struct ufs_hba *hba; + void __iomem *mmio_base; + int err; + + err = pci_enable_device(pdev); + if (err) { + dev_err(pdev-dev,

Re: [2.6 patch] scsi/qla4xxx/ql4_isr.c: remove dead code

2008-02-21 Thread Rolf Eike Beer
> The correct patch needs to be > > Signed-off-by: David C Somayajulu <[EMAIL PROTECTED]> > > --- > > diff --git a/drivers/scsi/qla4xxx/ql4_isr.c > b/drivers/scsi/qla4xxx/ql4_isr.c > index 0f029d0..fc84db4 100644 > --- a/drivers/scsi/qla4xxx/ql4_isr.c > +++ b/drivers/scsi/qla4xxx/ql4_isr.c > @@

Re: [2.6 patch] scsi/qla4xxx/ql4_isr.c: remove dead code

2008-02-21 Thread Rolf Eike Beer
The correct patch needs to be Signed-off-by: David C Somayajulu [EMAIL PROTECTED] --- diff --git a/drivers/scsi/qla4xxx/ql4_isr.c b/drivers/scsi/qla4xxx/ql4_isr.c index 0f029d0..fc84db4 100644 --- a/drivers/scsi/qla4xxx/ql4_isr.c +++ b/drivers/scsi/qla4xxx/ql4_isr.c @@ -100,8 +100,7 @@

Re: [JANITOR PROPOSAL] Switch ioctl functions to ->unlocked_ioctl

2008-01-10 Thread Rolf Eike Beer
Andi Kleen wrote: > > Can you explain the rationale behind that running on the BKL? What type > > of > > It used to always run with the BKL because everything used to > and originally nobody wanted to review all ioctl handlers in tree to see if > they can run with more fine grained locking. A lot

Re: [JANITOR PROPOSAL] Switch ioctl functions to ->unlocked_ioctl

2008-01-10 Thread Rolf Eike Beer
Andi Kleen wrote: > Here's a proposal for some useful code transformations the kernel janitors > could do as opposed to running checkpatch.pl. > > Most ioctl handlers still running implicitely under the big kernel > lock (BKL). But long term Linux is trying to get away from that. There is a > new

Re: [JANITOR PROPOSAL] Switch ioctl functions to -unlocked_ioctl

2008-01-10 Thread Rolf Eike Beer
Andi Kleen wrote: Here's a proposal for some useful code transformations the kernel janitors could do as opposed to running checkpatch.pl. Most ioctl handlers still running implicitely under the big kernel lock (BKL). But long term Linux is trying to get away from that. There is a new

Re: [JANITOR PROPOSAL] Switch ioctl functions to -unlocked_ioctl

2008-01-10 Thread Rolf Eike Beer
Andi Kleen wrote: Can you explain the rationale behind that running on the BKL? What type of It used to always run with the BKL because everything used to and originally nobody wanted to review all ioctl handlers in tree to see if they can run with more fine grained locking. A lot probably

Re: [PATCH] Fix segfault when printing battery status

2007-11-19 Thread Rolf Eike Beer
Alexey Starikovskiy wrote: > Rolf Eike Beer wrote: > > cat > > /sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:19/PNP0C0A:00/power_ > >supply/BAT1/status > > > > This leads to a stacktrace as acpi_battery_get_property() returns 0 for a > > case where i

[PATCH] Fix segfault when printing battery status

2007-11-19 Thread Rolf Eike Beer
s.c::power_supply_show_property(). I had a situation where the value was 4096 which caused a problem as the array only has 5 entries. Signed-off-by: Rolf Eike Beer <[EMAIL PROTECTED]> diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c index 192c244..2e8e790 100644 --- a/drivers/acpi/

[PATCH] Fix segfault when printing battery status

2007-11-19 Thread Rolf Eike Beer
::power_supply_show_property(). I had a situation where the value was 4096 which caused a problem as the array only has 5 entries. Signed-off-by: Rolf Eike Beer [EMAIL PROTECTED] diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c index 192c244..2e8e790 100644 --- a/drivers/acpi/battery.c +++ b

Re: [PATCH] Fix segfault when printing battery status

2007-11-19 Thread Rolf Eike Beer
Alexey Starikovskiy wrote: Rolf Eike Beer wrote: cat /sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:19/PNP0C0A:00/power_ supply/BAT1/status This leads to a stacktrace as acpi_battery_get_property() returns 0 for a case where it does not set val-intval. These value is used

Re: [PATCH 2/5] Construct one fakephp slot per pci slot

2007-11-15 Thread Rolf Eike Beer
Am Mittwoch, 14. November 2007 schrieb Alex Chiang: > * Matthew Wilcox <[EMAIL PROTECTED]>: > > On Wed, Nov 14, 2007 at 12:37:29PM -0700, Alex Chiang wrote: > > > Register one slot per slot, rather than one slot per function. > > > Change the name of the slot to fake%d instead of the pci address.

Re: [PATCH 2/5] Construct one fakephp slot per pci slot

2007-11-15 Thread Rolf Eike Beer
Am Mittwoch, 14. November 2007 schrieb Alex Chiang: * Matthew Wilcox [EMAIL PROTECTED]: On Wed, Nov 14, 2007 at 12:37:29PM -0700, Alex Chiang wrote: Register one slot per slot, rather than one slot per function. Change the name of the slot to fake%d instead of the pci address.

Re: [Pcihpd-discuss] [PATCH 2/5] Construct one fakephp slot per pci slot

2007-11-14 Thread Rolf Eike Beer
Am Mittwoch, 14. November 2007 schrieb Alex Chiang: > Hi Eike, > > * Rolf Eike Beer <[EMAIL PROTECTED]>: > > Alex Chiang wrote: > > > --- a/drivers/pci/hotplug/fakephp.c > > > +++ b/drivers/pci/hotplug/fakephp.c > > > @@ -93,6 +93,7 @@ static

Re: [Pcihpd-discuss] [PATCH 2/5] Construct one fakephp slot per pci slot

2007-11-14 Thread Rolf Eike Beer
Alex Chiang wrote: > Register one slot per slot, rather than one slot per function. > Change the name of the slot to fake%d instead of the pci address. > > Signed-off-by: Alex Chiang <[EMAIL PROTECTED]> > Signed-off-by: Matthew Wilcox <[EMAIL PROTECTED]> > --- > drivers/pci/hotplug/fakephp.c |

Re: [Pcihpd-discuss] [PATCH 2/5] Construct one fakephp slot per pci slot

2007-11-14 Thread Rolf Eike Beer
Alex Chiang wrote: Register one slot per slot, rather than one slot per function. Change the name of the slot to fake%d instead of the pci address. Signed-off-by: Alex Chiang [EMAIL PROTECTED] Signed-off-by: Matthew Wilcox [EMAIL PROTECTED] --- drivers/pci/hotplug/fakephp.c | 75

Re: [Pcihpd-discuss] [PATCH 2/5] Construct one fakephp slot per pci slot

2007-11-14 Thread Rolf Eike Beer
Am Mittwoch, 14. November 2007 schrieb Alex Chiang: Hi Eike, * Rolf Eike Beer [EMAIL PROTECTED]: Alex Chiang wrote: --- a/drivers/pci/hotplug/fakephp.c +++ b/drivers/pci/hotplug/fakephp.c @@ -93,6 +93,7 @@ static int add_slot(struct pci_dev *dev) struct dummy_slot *dslot

Re: [2.6.24-rc1][BUG] Oops on battery removal

2007-11-02 Thread Rolf Eike Beer
Alexey Starikovskiy wrote: > Rolf Eike Beer wrote: > > Alexey Starikovskiy wrote: > >> Rolf Eike Beer wrote: > >>> Alexey Starikovskiy wrote: > >>>> Rolf Eike Beer wrote: > >>>>> Rolf Eike Beer wrote: > >>>>>> Hi,

Re: [2.6.24-rc1][BUG] Oops on battery removal

2007-11-02 Thread Rolf Eike Beer
Alexey Starikovskiy wrote: > Rolf Eike Beer wrote: > > Alexey Starikovskiy wrote: > >> Rolf Eike Beer wrote: > >>> Rolf Eike Beer wrote: > >>>> Hi, > >>>> > >>>> this happened while I removed my battery on bootup. Com

Re: [2.6.24-rc1][BUG] Oops on battery removal

2007-11-02 Thread Rolf Eike Beer
Alexey Starikovskiy wrote: > Rolf Eike Beer wrote: > > Rolf Eike Beer wrote: > >> Hi, > >> > >> this happened while I removed my battery on bootup. Complete dmesg is > >> attached. Kernel is 2.6.24-rc1-git of yesterday (last commit was > >> d9

Re: [2.6.24-rc1][BUG] Oops on battery removal

2007-11-02 Thread Rolf Eike Beer
Rolf Eike Beer wrote: > Hi, > > this happened while I removed my battery on bootup. Complete dmesg is > attached. Kernel is 2.6.24-rc1-git of yesterday (last commit was > d919fd433b5823d1cf9d0688eb2eec183de9b74c). Ok, I found out that it has nothing to do with the actual remo

[2.6.24-rc1][BUG] Oops on battery removal

2007-11-02 Thread Rolf Eike Beer
Hi, this happened while I removed my battery on bootup. Complete dmesg is attached. Kernel is 2.6.24-rc1-git of yesterday (last commit was d919fd433b5823d1cf9d0688eb2eec183de9b74c). Greetings, Eike BUG: unable to handle kernel NULL pointer dereference at virtual address 001c printing

Re: [2.6.24-rc1][BUG] Oops on battery removal

2007-11-02 Thread Rolf Eike Beer
Alexey Starikovskiy wrote: Rolf Eike Beer wrote: Rolf Eike Beer wrote: Hi, this happened while I removed my battery on bootup. Complete dmesg is attached. Kernel is 2.6.24-rc1-git of yesterday (last commit was d919fd433b5823d1cf9d0688eb2eec183de9b74c). Ok, I found out that it has

Re: [2.6.24-rc1][BUG] Oops on battery removal

2007-11-02 Thread Rolf Eike Beer
Alexey Starikovskiy wrote: Rolf Eike Beer wrote: Alexey Starikovskiy wrote: Rolf Eike Beer wrote: Alexey Starikovskiy wrote: Rolf Eike Beer wrote: Rolf Eike Beer wrote: Hi, this happened while I removed my battery on bootup. Complete dmesg is attached. Kernel is 2.6.24-rc1-git

Re: [2.6.24-rc1][BUG] Oops on battery removal

2007-11-02 Thread Rolf Eike Beer
Alexey Starikovskiy wrote: Rolf Eike Beer wrote: Alexey Starikovskiy wrote: Rolf Eike Beer wrote: Rolf Eike Beer wrote: Hi, this happened while I removed my battery on bootup. Complete dmesg is attached. Kernel is 2.6.24-rc1-git of yesterday (last commit

[2.6.24-rc1][BUG] Oops on battery removal

2007-11-02 Thread Rolf Eike Beer
Hi, this happened while I removed my battery on bootup. Complete dmesg is attached. Kernel is 2.6.24-rc1-git of yesterday (last commit was d919fd433b5823d1cf9d0688eb2eec183de9b74c). Greetings, Eike BUG: unable to handle kernel NULL pointer dereference at virtual address 001c printing

Re: [2.6.24-rc1][BUG] Oops on battery removal

2007-11-02 Thread Rolf Eike Beer
Rolf Eike Beer wrote: Hi, this happened while I removed my battery on bootup. Complete dmesg is attached. Kernel is 2.6.24-rc1-git of yesterday (last commit was d919fd433b5823d1cf9d0688eb2eec183de9b74c). Ok, I found out that it has nothing to do with the actual removal as it seems. When I

Re: iwl3945 in 2.6.24-rc1 dies under load

2007-11-01 Thread Rolf Eike Beer
Am Donnerstag, 1. November 2007 schrieb Rafael J. Wysocki: > On Wednesday, 31 October 2007 01:52, Pavel Machek wrote: > > Hi! > > > > ...does not seem to work too well :-(. It connects with the AP > > (good!), and survives some "normal" use, but it died at first big > > tcpspray (bd!). > > Is

Re: iwl3945 in 2.6.24-rc1 dies under load

2007-11-01 Thread Rolf Eike Beer
Am Donnerstag, 1. November 2007 schrieb Rafael J. Wysocki: On Wednesday, 31 October 2007 01:52, Pavel Machek wrote: Hi! ...does not seem to work too well :-(. It connects with the AP (good!), and survives some normal use, but it died at first big tcpspray (bd!). Is this a

Re: Possible 2.6.23 regression - Disappearing disk space

2007-10-25 Thread Rolf Eike Beer
James Ausmus wrote: > Since updating my laptop to 2.6.23, occasionally all of my free disk > space on my root partition will just go away, with no files accounting > for the space, with no odd messages in dmesg or my syslog. If I > reboot, I immediately have the proper amount of free space again.

Re: [PATCH 2.6.24-rc1] fix sg_phys to use dma_addr_t

2007-10-25 Thread Rolf Eike Beer
Jens Axboe wrote: > On Thu, Oct 25 2007, Rolf Eike Beer wrote: > > Jens Axboe wrote: > > > On Thu, Oct 25 2007, Rolf Eike Beer wrote: > > > > Am Donnerstag, 25. Oktober 2007 schrieb Arjan van de Ven: > > > > > > Signed-off-by: Hugh Dickins <[EM

Re: [PATCH 2.6.24-rc1] fix sg_phys to use dma_addr_t

2007-10-25 Thread Rolf Eike Beer
Jens Axboe wrote: > On Thu, Oct 25 2007, Rolf Eike Beer wrote: > > Am Donnerstag, 25. Oktober 2007 schrieb Arjan van de Ven: > > > > Signed-off-by: Hugh Dickins <[EMAIL PROTECTED]> > > > > --- > > > > Whether this is a complete patch, suitable for

Re: [PATCH 2.6.24-rc1] fix sg_phys to use dma_addr_t

2007-10-25 Thread Rolf Eike Beer
Am Donnerstag, 25. Oktober 2007 schrieb Arjan van de Ven: > > Signed-off-by: Hugh Dickins <[EMAIL PROTECTED]> > > --- > > Whether this is a complete patch, suitable for all architectures, > > I'm not sure: it builds, boots and runs correctly on the x86_32 box > > in question, but you'll be a lot

Re: [PATCH 3/4] [SCSI] ips: PCI API cleanups

2007-10-25 Thread Rolf Eike Beer
Jeff Garzik wrote: > * pass Scsi_Host to ips_remove_device() via pci_set_drvdata(), > allowing us to eliminate the ips_ha[] search loop and call > ips_release() directly. > > * call pci_{request,release}_regions() and eliminate individual > request/release_[mem_]region() calls > > * call

Re: [PATCH 3/4] [SCSI] ips: PCI API cleanups

2007-10-25 Thread Rolf Eike Beer
Jeff Garzik wrote: * pass Scsi_Host to ips_remove_device() via pci_set_drvdata(), allowing us to eliminate the ips_ha[] search loop and call ips_release() directly. * call pci_{request,release}_regions() and eliminate individual request/release_[mem_]region() calls * call

Re: [PATCH 2.6.24-rc1] fix sg_phys to use dma_addr_t

2007-10-25 Thread Rolf Eike Beer
Am Donnerstag, 25. Oktober 2007 schrieb Arjan van de Ven: Signed-off-by: Hugh Dickins [EMAIL PROTECTED] --- Whether this is a complete patch, suitable for all architectures, I'm not sure: it builds, boots and runs correctly on the x86_32 box in question, but you'll be a lot wiser than me

Re: [PATCH 2.6.24-rc1] fix sg_phys to use dma_addr_t

2007-10-25 Thread Rolf Eike Beer
Jens Axboe wrote: On Thu, Oct 25 2007, Rolf Eike Beer wrote: Am Donnerstag, 25. Oktober 2007 schrieb Arjan van de Ven: Signed-off-by: Hugh Dickins [EMAIL PROTECTED] --- Whether this is a complete patch, suitable for all architectures, I'm not sure: it builds, boots and runs

Re: [PATCH 2.6.24-rc1] fix sg_phys to use dma_addr_t

2007-10-25 Thread Rolf Eike Beer
Jens Axboe wrote: On Thu, Oct 25 2007, Rolf Eike Beer wrote: Jens Axboe wrote: On Thu, Oct 25 2007, Rolf Eike Beer wrote: Am Donnerstag, 25. Oktober 2007 schrieb Arjan van de Ven: Signed-off-by: Hugh Dickins [EMAIL PROTECTED] --- Whether this is a complete patch

Re: Possible 2.6.23 regression - Disappearing disk space

2007-10-25 Thread Rolf Eike Beer
James Ausmus wrote: Since updating my laptop to 2.6.23, occasionally all of my free disk space on my root partition will just go away, with no files accounting for the space, with no odd messages in dmesg or my syslog. If I reboot, I immediately have the proper amount of free space again. Here

[PATCH] Typo: depricated -> deprecated

2007-10-08 Thread Rolf Eike Beer
Typo: depricated -> deprecated Signed-off-by: Rolf Eike Beer <[EMAIL PROTECTED]> --- commit b7ec07d26c9fd915fd32b759aa05a1ead8c432f5 tree 6f6dafac4072fddd670a97f68cbd64bf505d0408 parent 43dcafe3f7bfc07bdaf55d353fd4c5112c5f2be6 author Rolf Eike Beer <[EMAIL PROTECTED]> Sun, 07 Oc

[PATCH] Typo: depricated - deprecated

2007-10-08 Thread Rolf Eike Beer
Typo: depricated - deprecated Signed-off-by: Rolf Eike Beer [EMAIL PROTECTED] --- commit b7ec07d26c9fd915fd32b759aa05a1ead8c432f5 tree 6f6dafac4072fddd670a97f68cbd64bf505d0408 parent 43dcafe3f7bfc07bdaf55d353fd4c5112c5f2be6 author Rolf Eike Beer [EMAIL PROTECTED] Sun, 07 Oct 2007 10:29:39 +0200

Re: Accessing 64-bit BARs

2007-10-04 Thread Rolf Eike Beer
Am Donnerstag, 4. Oktober 2007 schrieb yogeshwar sonawane: > Hello all, > > For accessing memory-mapped 64bit-BAR regions of a PCI card, the > respective BAR regions has to be made accessible to the kernel using > ioremap() function. Then readl()/writel() can be used on the address > returned by

Re: Accessing 64-bit BARs

2007-10-04 Thread Rolf Eike Beer
Am Donnerstag, 4. Oktober 2007 schrieb yogeshwar sonawane: Hello all, For accessing memory-mapped 64bit-BAR regions of a PCI card, the respective BAR regions has to be made accessible to the kernel using ioremap() function. Then readl()/writel() can be used on the address returned by

Re: [PATCH 19/30] scsi: Remove explicit casts of [kv]alloc return values in osst driver

2007-08-24 Thread Rolf Eike Beer
Jesper Juhl wrote: > [kv]alloc() return void *. No need to cast the return value. > @@ -5756,7 +5756,7 @@ static int osst_probe(struct device *dev) > write_lock(_scsi_tapes_lock); > if (os_scsi_tapes == NULL) { > os_scsi_tapes = > - (struct osst_tape

Re: [PATCH 19/30] scsi: Remove explicit casts of [kv]alloc return values in osst driver

2007-08-24 Thread Rolf Eike Beer
Jesper Juhl wrote: [kv]alloc() return void *. No need to cast the return value. @@ -5756,7 +5756,7 @@ static int osst_probe(struct device *dev) write_lock(os_scsi_tapes_lock); if (os_scsi_tapes == NULL) { os_scsi_tapes = - (struct osst_tape

[PATCH][Doc] Typo: fro -> from

2007-07-17 Thread Rolf Eike Beer
Signed-off-by: Rolf Eike Beer <[EMAIL PROTECTED]> --- commit 11a9dc32fadc7fe6722dc62ce84f0e483eb85368 tree bc08486dd569753148b5e09d000866cec4d971d7 parent a3036bca04b4e27427e01ed74fb93b8600595bce author Rolf Eike Beer <[EMAIL PROTECTED]> Tue, 17 Jul 2007 09:54:47 +0200 committer Ro

[PATCH][Doc] Typo: fro - from

2007-07-17 Thread Rolf Eike Beer
Signed-off-by: Rolf Eike Beer [EMAIL PROTECTED] --- commit 11a9dc32fadc7fe6722dc62ce84f0e483eb85368 tree bc08486dd569753148b5e09d000866cec4d971d7 parent a3036bca04b4e27427e01ed74fb93b8600595bce author Rolf Eike Beer [EMAIL PROTECTED] Tue, 17 Jul 2007 09:54:47 +0200 committer Rolf Eike Beer [EMAIL

Re: [Test_Module] Changing brightness in Toshiba notebooks with Phoenix Bios

2007-07-16 Thread Rolf Eike Beer
Am Freitag, 15. Juni 2007 schrieb Renato S. Yamane: > Forwarding from: Toshiba_Linux-Users ([EMAIL PROTECTED]) > > = > I only tested on my Toshiba Satellite Pro A100 and it works. You may want to have a look on the "omnibook" project on http://omnibook.sf.net. Although it's named

Re: [Test_Module] Changing brightness in Toshiba notebooks with Phoenix Bios

2007-07-16 Thread Rolf Eike Beer
Am Freitag, 15. Juni 2007 schrieb Renato S. Yamane: Forwarding from: Toshiba_Linux-Users ([EMAIL PROTECTED]) = I only tested on my Toshiba Satellite Pro A100 and it works. You may want to have a look on the omnibook project on http://omnibook.sf.net. Although it's named omnibook

[PATCH] Fix typo in include/linux/pci.h

2007-07-10 Thread Rolf Eike Beer
Signed-off-by: Rolf Eike Beer <[EMAIL PROTECTED]> --- commit f57463dabf991c306dc43dcf7445ec574484e4ee tree 37c5d48baf200d7c8d04e506fd8b99217953 parent 58056c2424917e90b86ca11c2c5d3fd35313d7b6 author Rolf Eike Beer <[EMAIL PROTECTED]> Tue, 10 Jul 2007 13:32:29 +0200 committer Ro

[PATCH][Doc] Document pci_iomap()

2007-07-10 Thread Rolf Eike Beer
This useful interface is hardly mentioned anywhere in the in-tree documentation. Signed-off-by: Rolf Eike Beer <[EMAIL PROTECTED]> --- commit bdf4a23b9b1ff4be79a6f9b863f7203dba2dc808 tree a53c4a6c90e13d55fbf2a0b40cd9676bd9a5d0e5 parent 33738cbb6555861de1dce626c913fad06ce658cc author Rol

[PATCH][Doc] Document pci_iomap()

2007-07-10 Thread Rolf Eike Beer
This useful interface is hardly mentioned anywhere in the in-tree documentation. Signed-off-by: Rolf Eike Beer [EMAIL PROTECTED] --- commit bdf4a23b9b1ff4be79a6f9b863f7203dba2dc808 tree a53c4a6c90e13d55fbf2a0b40cd9676bd9a5d0e5 parent 33738cbb6555861de1dce626c913fad06ce658cc author Rolf Eike Beer

[PATCH] Fix typo in include/linux/pci.h

2007-07-10 Thread Rolf Eike Beer
Signed-off-by: Rolf Eike Beer [EMAIL PROTECTED] --- commit f57463dabf991c306dc43dcf7445ec574484e4ee tree 37c5d48baf200d7c8d04e506fd8b99217953 parent 58056c2424917e90b86ca11c2c5d3fd35313d7b6 author Rolf Eike Beer [EMAIL PROTECTED] Tue, 10 Jul 2007 13:32:29 +0200 committer Rolf Eike Beer [EMAIL

[PATCH 4/4][Doc] Document pci_iomap()

2007-07-09 Thread Rolf Eike Beer
This useful interface is hardly mentioned anywhere in the in-tree documentation. Signed-off-by: Rolf Eike Beer <[EMAIL PROTECTED]> --- commit 2cb2450818804edcbcb1486a4df0db06e5d49969 tree 2c53fbd2e0be832767446a8684561200b437a695 parent 288a3f1fd00365669ed9ad725b15ff67004cee0a author Rol

[PATCH 2/4] Initialize filp->private_data only once in em28xx_v4l2_open

2007-07-09 Thread Rolf Eike Beer
Some lines later filp->private_data is initialized to dev again. Since there are some checks that might fail in the mean time keep the later version. Signed-off-by: Rolf Eike Beer <[EMAIL PROTECTED]> --- commit 7103e0b114b01a16d7c1ea71914d5069d974

[PATCH 3/4][Doc] Fix typos in fs/sysfs/file.c

2007-07-09 Thread Rolf Eike Beer
Signed-off-by: Rolf Eike Beer <[EMAIL PROTECTED]> --- commit 966fef8404d59056d8524bf94d7dff790fe1fa82 tree 1adc274bc9b8e7e420db0b0023c8b70bd294e84e parent 0cbdc367b144a95709852c642a069ed652989520 author Rolf Eike Beer <[EMAIL PROTECTED]> Mon, 21 May 2007 22:55:30 +0200 committer Ro

[PATCH 1/4] Use kcalloc() in drivers/video/aty/atyfb_base.c

2007-07-09 Thread Rolf Eike Beer
Signed-off-by: Rolf Eike Beer <[EMAIL PROTECTED]> --- commit cc4a7b5dfee25083a6a5741b5b640ae2a1d3aa12 tree a4763216a61fa1501bf9b5dbb60f8860d1620b99 parent dcd9673a1ca36cb084de58f443edf42fd64b186b author Rolf Eike Beer <[EMAIL PROTECTED]> Mon, 07 Aug 2006 13:36:24 +0200 committer Ro

[PATCH 0/4] misc patches

2007-07-09 Thread Rolf Eike Beer
This are some random patches I've lying around here. They are not related to each other 1) Use kcalloc() in drivers/video/aty/atyfb_base.c 2) Initialize filp->private_data only once in em28xx_v4l2_open 3) [Doc] Fix typos in fs/sysfs/file.c 4) [Doc] Document pci_iomap() Eike signature.asc

[PATCH 0/4] misc patches

2007-07-09 Thread Rolf Eike Beer
This are some random patches I've lying around here. They are not related to each other 1) Use kcalloc() in drivers/video/aty/atyfb_base.c 2) Initialize filp-private_data only once in em28xx_v4l2_open 3) [Doc] Fix typos in fs/sysfs/file.c 4) [Doc] Document pci_iomap() Eike signature.asc

[PATCH 1/4] Use kcalloc() in drivers/video/aty/atyfb_base.c

2007-07-09 Thread Rolf Eike Beer
Signed-off-by: Rolf Eike Beer [EMAIL PROTECTED] --- commit cc4a7b5dfee25083a6a5741b5b640ae2a1d3aa12 tree a4763216a61fa1501bf9b5dbb60f8860d1620b99 parent dcd9673a1ca36cb084de58f443edf42fd64b186b author Rolf Eike Beer [EMAIL PROTECTED] Mon, 07 Aug 2006 13:36:24 +0200 committer Rolf Eike Beer [EMAIL

[PATCH 2/4] Initialize filp-private_data only once in em28xx_v4l2_open

2007-07-09 Thread Rolf Eike Beer
Some lines later filp-private_data is initialized to dev again. Since there are some checks that might fail in the mean time keep the later version. Signed-off-by: Rolf Eike Beer [EMAIL PROTECTED] --- commit 7103e0b114b01a16d7c1ea71914d5069d974167d tree 6b976d7ce4e872b32805d7df73dd13b5349d439f

[PATCH 3/4][Doc] Fix typos in fs/sysfs/file.c

2007-07-09 Thread Rolf Eike Beer
Signed-off-by: Rolf Eike Beer [EMAIL PROTECTED] --- commit 966fef8404d59056d8524bf94d7dff790fe1fa82 tree 1adc274bc9b8e7e420db0b0023c8b70bd294e84e parent 0cbdc367b144a95709852c642a069ed652989520 author Rolf Eike Beer [EMAIL PROTECTED] Mon, 21 May 2007 22:55:30 +0200 committer Rolf Eike Beer [EMAIL

[PATCH 4/4][Doc] Document pci_iomap()

2007-07-09 Thread Rolf Eike Beer
This useful interface is hardly mentioned anywhere in the in-tree documentation. Signed-off-by: Rolf Eike Beer [EMAIL PROTECTED] --- commit 2cb2450818804edcbcb1486a4df0db06e5d49969 tree 2c53fbd2e0be832767446a8684561200b437a695 parent 288a3f1fd00365669ed9ad725b15ff67004cee0a author Rolf Eike Beer

Re: Add INPUT support to toshiba_acpi

2007-07-02 Thread Rolf Eike Beer
Renato S. Yamane wrote: > Rolf Eike Beer wrote: > > Richard Hughes wrote: > >> Yes, although this is out of my area or expertise, sorry. > > > > I've looked a bit but can't find any driver interaction of those > > programs. Any further ideas welcome. > >

Re: Add INPUT support to toshiba_acpi

2007-07-02 Thread Rolf Eike Beer
Renato S. Yamane wrote: Rolf Eike Beer wrote: Richard Hughes wrote: Yes, although this is out of my area or expertise, sorry. I've looked a bit but can't find any driver interaction of those programs. Any further ideas welcome. Do you try omnibook driver? svn export https

Re: Add INPUT support to toshiba_acpi

2007-06-28 Thread Rolf Eike Beer
Richard Hughes wrote: > On Tue, 2007-06-26 at 07:03 +0200, Rolf Eike Beer wrote: >> Richard Hughes wrote: >>> On Sat, 2007-06-23 at 16:56 +0200, Rolf Eike Beer wrote: >>>> None of the above keys generated a key event. Neither does >>>> "Brigh

Re: Add INPUT support to toshiba_acpi

2007-06-28 Thread Rolf Eike Beer
Richard Hughes wrote: On Tue, 2007-06-26 at 07:03 +0200, Rolf Eike Beer wrote: Richard Hughes wrote: On Sat, 2007-06-23 at 16:56 +0200, Rolf Eike Beer wrote: None of the above keys generated a key event. Neither does Brightness down, but it still works. Brightness up generates an event

Re: Add INPUT support to toshiba_acpi

2007-06-26 Thread Rolf Eike Beer
Richard Hughes wrote: > On Sat, 2007-06-23 at 16:56 +0200, Rolf Eike Beer wrote: > > None of the above keys generated a key event. Neither does "Brightness > > down", but it still works. "Brightness up" generates an event and works. > > Kpowersave

Re: Add INPUT support to toshiba_acpi

2007-06-26 Thread Rolf Eike Beer
Richard Hughes wrote: On Sat, 2007-06-23 at 16:56 +0200, Rolf Eike Beer wrote: None of the above keys generated a key event. Neither does Brightness down, but it still works. Brightness up generates an event and works. Kpowersave tells me it can't do brightness switching in software (which

Re: Add INPUT support to toshiba_acpi

2007-06-25 Thread Rolf Eike Beer
Richard Hughes wrote: > On Sat, 2007-06-23 at 16:56 +0200, Rolf Eike Beer wrote: > > None of the above keys generated a key event. Neither does "Brightness > > down", but it still works. "Brightness up" generates an event and works. > > Kpowersave

Re: [ANNOUNCE] Linux Kernel Tester’s Guide v0.3-rc1

2007-06-25 Thread Rolf Eike Beer
Michal Piotrowski wrote: > Hi, > > We are pleased to announce the availability of "Linux Kernel Tester's > Guide" v0.3-rc1. It would be cool if we can get a clickable table of contents. Normally it's enough to include \usepackage{hyperref} before running pdflatex. Eike signature.asc

Re: Add INPUT support to toshiba_acpi

2007-06-25 Thread Rolf Eike Beer
Richard Hughes wrote: > Attached patch adds a kernel thread to do polling on Toshiba hardware. Is there something similar available to support other Toshiba laptops? I own a A110-178 that is not supported by the driver but has a lot of keys that I can't use currently: Fn: -screen zoom (I

Re: Add INPUT support to toshiba_acpi

2007-06-25 Thread Rolf Eike Beer
Richard Hughes wrote: Attached patch adds a kernel thread to do polling on Toshiba hardware. Is there something similar available to support other Toshiba laptops? I own a A110-178 that is not supported by the driver but has a lot of keys that I can't use currently: Fn: -screen zoom (I

Re: [ANNOUNCE] Linux Kernel Tester’s Guide v0.3-rc1

2007-06-25 Thread Rolf Eike Beer
Michal Piotrowski wrote: Hi, We are pleased to announce the availability of Linux Kernel Tester's Guide v0.3-rc1. It would be cool if we can get a clickable table of contents. Normally it's enough to include \usepackage{hyperref} before running pdflatex. Eike signature.asc Description:

Re: Add INPUT support to toshiba_acpi

2007-06-25 Thread Rolf Eike Beer
Richard Hughes wrote: On Sat, 2007-06-23 at 16:56 +0200, Rolf Eike Beer wrote: None of the above keys generated a key event. Neither does Brightness down, but it still works. Brightness up generates an event and works. Kpowersave tells me it can't do brightness switching in software (which

Re: [patch 34/54] Fix roundup_pow_of_two(1)

2007-06-11 Thread Rolf Eike Beer
Chris Wright wrote: > * Theodore Tso ([EMAIL PROTECTED]) wrote: > > If this doesn't fix a user-visiable bug, should we be including it in > > the stable patch series? (Assuming that it doesn't, I wouldn't, but I > > tend to be more conservative about what I would include in a stable > >

Re: [patch 34/54] Fix roundup_pow_of_two(1)

2007-06-11 Thread Rolf Eike Beer
Chris Wright wrote: * Theodore Tso ([EMAIL PROTECTED]) wrote: If this doesn't fix a user-visiable bug, should we be including it in the stable patch series? (Assuming that it doesn't, I wouldn't, but I tend to be more conservative about what I would include in a stable production

Re: [PATCH] Fix roundup_pow_of_two(1)

2007-06-04 Thread Rolf Eike Beer
Adrian Bunk wrote: > On Thu, May 17, 2007 at 11:56:56PM +0200, Rolf Eike Beer wrote: > > Fix roundup_pow_of_two(1) > > > > 1 is a power of two, therefore roundup_pow_of_two(1) should return 1. It > > does in case the argument is a variable but in case it's a co

<    1   2   3   4   >