Re: Fwd: [PATCH 2/14] drivers/media/platform/soc_camera/mx2_camera.c: fix error return code

2012-09-23 Thread Guennadi Liakhovetski
majordomo info at http://vger.kernel.org/majordomo-info.html --- Guennadi Liakhovetski, Ph.D. Freelance Open-Source Software Developer http://www.open-technology.de/ -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

Re: Fwd: [PATCH 1/14] drivers/media/platform/soc_camera/soc_camera.c: fix error return code

2012-09-23 Thread Guennadi Liakhovetski
with these two and an ov2640 fix. Thanks Guennadi /* At this point client .probe() should have run already */ --- Guennadi Liakhovetski, Ph.D. Freelance Open-Source Software Developer http://www.open-technology.de/ -- To unsubscribe from this list: send the line unsubscribe linux-kernel

Re: [PATCH 04/16] ARM: imx: move platform_data definitions

2012-09-11 Thread Guennadi Liakhovetski
On Tue, 11 Sep 2012, Arnd Bergmann wrote: > On Tuesday 11 September 2012, Guennadi Liakhovetski wrote: > > Hi Arnd > > > > It probably wouldn't be very difficult to also include > > arch/arm/plat-mxc/include/mach/ipu.h in this your patch, but you can also > >

Re: [PATCH 04/16] ARM: imx: move platform_data definitions

2012-09-11 Thread Guennadi Liakhovetski
Hi Arnd It probably wouldn't be very difficult to also include arch/arm/plat-mxc/include/mach/ipu.h in this your patch, but you can also leave it for later. Just to make sure it's not something that would make your future patching more complicated. Thanks Guennadi --- Guennadi Liakhovetski

Re: [PATCH 04/16] ARM: imx: move platform_data definitions

2012-09-11 Thread Guennadi Liakhovetski
Hi Arnd It probably wouldn't be very difficult to also include arch/arm/plat-mxc/include/mach/ipu.h in this your patch, but you can also leave it for later. Just to make sure it's not something that would make your future patching more complicated. Thanks Guennadi --- Guennadi Liakhovetski

Re: [PATCH 04/16] ARM: imx: move platform_data definitions

2012-09-11 Thread Guennadi Liakhovetski
On Tue, 11 Sep 2012, Arnd Bergmann wrote: On Tuesday 11 September 2012, Guennadi Liakhovetski wrote: Hi Arnd It probably wouldn't be very difficult to also include arch/arm/plat-mxc/include/mach/ipu.h in this your patch, but you can also leave it for later. Just to make sure it's

Re: [PATCH v2] tmscsim: spin_unlock_irq in interrupt handler fix

2012-08-03 Thread Guennadi Liakhovetski
Denis Efremov Acked-by: Guennadi Liakhovetski Note: I didn't test this. I still have a dc390 card in my PC, so, I could test it, but I haven't yet got time for this and I'll be away the next week. The patch looks correct and safe. If it does break anything, well, we'll get to know about that soone

Re: [PATCH v2] tmscsim: spin_unlock_irq in interrupt handler fix

2012-08-03 Thread Guennadi Liakhovetski
Acked-by: Guennadi Liakhovetski g.liakhovet...@gmx.de Note: I didn't test this. I still have a dc390 card in my PC, so, I could test it, but I haven't yet got time for this and I'll be away the next week. The patch looks correct and safe. If it does break anything, well, we'll get to know

Re: [PATCH] tmscsim: spin_unlock_irq in interrupt handler fix

2012-07-31 Thread Guennadi Liakhovetski
_Status ! */ > @@ -736,7 +737,7 @@ DC390_Interrupt(void *dev_id) > } > > unlock: > -spin_unlock_irq(pACB->pScsiHost->host_lock); > +spin_unlock_irqrestore(pACB->pScsiHost->host_lock, flags); > return IRQ_HANDLED; > } > > -- &

Re: [PATCH] tmscsim: spin_unlock_irq in interrupt handler fix

2012-07-31 Thread Guennadi Liakhovetski
-host_lock); +spin_unlock_irqrestore(pACB-pScsiHost-host_lock, flags); return IRQ_HANDLED; } -- 1.7.7 --- Guennadi Liakhovetski, Ph.D. Freelance Open-Source Software Developer http://www.open-technology.de/ -- To unsubscribe from this list: send the line unsubscribe linux-kernel

[PATCH 1/2] dmaengine: shdma: restore partial transfer calculation

2012-07-30 Thread Guennadi Liakhovetski
The recent shdma driver split has mistakenly removed support for partial DMA transfer size calculation on forced termination. This patch restores it. Signed-off-by: Guennadi Liakhovetski --- drivers/dma/sh/shdma-base.c |9 + drivers/dma/sh/shdma.c | 12 include

[PATCH 2/2] serial: sh-sci: fix compilation breakage, when DMA is enabled

2012-07-30 Thread Guennadi Liakhovetski
A recent commit: commit d6fa5a4e7ab605370fd6c982782f84ef2e6660e7 Author: Guennadi Liakhovetski serial: sh-sci: prepare for conversion to the shdma base library is not sufficient to update the sh-sci driver to the new shdma driver layout. This caused compilation breakage, when

[PATCH 0/2] serial: sh-sci: fix compilation breakage (3.6)

2012-07-30 Thread Guennadi Liakhovetski
Hi all as has been reported in this http://thread.gmane.org/gmane.linux.kernel/1294256/focus=16001 thread, currently sh-sci doesn't comiple in the mainline and in -next if CONFIG_SERIAL_SH_SCI_DMA is enabled. This patch series fixes this breakage. Thanks Guennadi --- Guennadi Liakhovetski

[PATCH 0/2] serial: sh-sci: fix compilation breakage (3.6)

2012-07-30 Thread Guennadi Liakhovetski
Hi all as has been reported in this http://thread.gmane.org/gmane.linux.kernel/1294256/focus=16001 thread, currently sh-sci doesn't comiple in the mainline and in -next if CONFIG_SERIAL_SH_SCI_DMA is enabled. This patch series fixes this breakage. Thanks Guennadi --- Guennadi Liakhovetski

[PATCH 2/2] serial: sh-sci: fix compilation breakage, when DMA is enabled

2012-07-30 Thread Guennadi Liakhovetski
A recent commit: commit d6fa5a4e7ab605370fd6c982782f84ef2e6660e7 Author: Guennadi Liakhovetski g.liakhovet...@gmx.de serial: sh-sci: prepare for conversion to the shdma base library is not sufficient to update the sh-sci driver to the new shdma driver layout. This caused compilation breakage

[PATCH 1/2] dmaengine: shdma: restore partial transfer calculation

2012-07-30 Thread Guennadi Liakhovetski
The recent shdma driver split has mistakenly removed support for partial DMA transfer size calculation on forced termination. This patch restores it. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- drivers/dma/sh/shdma-base.c |9 + drivers/dma/sh/shdma.c | 12

Re: [PATCH 9/9 v3] dma: shdma: convert to the shdma base library

2012-07-26 Thread Guennadi Liakhovetski
On Thu, 26 Jul 2012, Vinod Koul wrote: > On Thu, 2012-07-26 at 15:58 +0900, Paul Mundt wrote: > > On Thu, Jul 26, 2012 at 12:19:21PM +0530, Vinod Koul wrote: > > > On Wed, 2012-07-25 at 12:59 +0900, Paul Mundt wrote: > > > > On Wed, May 09, 2012 at 05:09:21PM +020

Re: [PATCH 9/9 v3] dma: shdma: convert to the shdma base library

2012-07-26 Thread Guennadi Liakhovetski
On Thu, 26 Jul 2012, Vinod Koul wrote: On Thu, 2012-07-26 at 15:58 +0900, Paul Mundt wrote: On Thu, Jul 26, 2012 at 12:19:21PM +0530, Vinod Koul wrote: On Wed, 2012-07-25 at 12:59 +0900, Paul Mundt wrote: On Wed, May 09, 2012 at 05:09:21PM +0200, Guennadi Liakhovetski wrote

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-18 Thread Guennadi Liakhovetski
Hi Vinod On Wed, 18 Jul 2012, Vinod Koul wrote: > On Mon, 2012-07-16 at 14:47 +0200, Guennadi Liakhovetski wrote: > > > > Yes, that's right - these values have to be written to DMAC channel > > > > configuration registers, so, we do not have to change anything, those

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-18 Thread Guennadi Liakhovetski
Hi Vinod On Wed, 18 Jul 2012, Vinod Koul wrote: On Mon, 2012-07-16 at 14:47 +0200, Guennadi Liakhovetski wrote: Yes, that's right - these values have to be written to DMAC channel configuration registers, so, we do not have to change anything, those values can remain DMAC

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: > On Mon, 2012-07-16 at 12:55 +0200, Guennadi Liakhovetski wrote: > > On Mon, 16 Jul 2012, Vinod Koul wrote: > > > > > On Mon, 2012-07-16 at 12:01 +0200, Guennadi Liakhovetski wrote: > > > > On Mon, 16 Jul 2012, Vinod K

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: > On Mon, 2012-07-16 at 12:01 +0200, Guennadi Liakhovetski wrote: > > On Mon, 16 Jul 2012, Vinod Koul wrote: > > > > > On Mon, 2012-07-16 at 10:47 +0200, Guennadi Liakhovetski wrote: > > > > > I want to know what

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: > On Mon, 2012-07-16 at 10:47 +0200, Guennadi Liakhovetski wrote: > > > I want to know what does ccr and mid_rid mean to dmac here? > > > > CHCR contains a few fields, some enable various interrupt sources, some > > specify r

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: > On Mon, 2012-07-16 at 09:13 +0200, Guennadi Liakhovetski wrote: > > > > They tell the driver how the channel has to be configured to > > support this > > > > specific client. They are values of two specific registers.

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: > On Mon, 2012-07-16 at 08:37 +0200, Guennadi Liakhovetski wrote: > > On Mon, 16 Jul 2012, Vinod Koul wrote: > > > > > On Thu, 2012-07-05 at 12:29 +0200, Guennadi Liakhovetski wrote: > > > > diff --git a/include/lin

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: > On Thu, 2012-07-05 at 12:29 +0200, Guennadi Liakhovetski wrote: > > diff --git a/include/linux/sh_dma.h b/include/linux/sh_dma.h > > index a79f10a..4e83f3e 100644 > > --- a/include/linux/sh_dma.h > > +++ b/include/linux/sh

Re: [PATCH 6/7 v2] dma: sh: provide a migration path for slave drivers to stop using .private

2012-07-16 Thread Guennadi Liakhovetski
Hi Vinod On Mon, 16 Jul 2012, Vinod Koul wrote: > On Thu, 2012-07-05 at 12:29 +0200, Guennadi Liakhovetski wrote: > > This patch extends the sh dmaengine driver to support the preferred channel > > selection and configuration method, instead of using the "private" field

Re: [PATCH 6/7 v2] dma: sh: provide a migration path for slave drivers to stop using .private

2012-07-16 Thread Guennadi Liakhovetski
Hi Vinod On Mon, 16 Jul 2012, Vinod Koul wrote: On Thu, 2012-07-05 at 12:29 +0200, Guennadi Liakhovetski wrote: This patch extends the sh dmaengine driver to support the preferred channel selection and configuration method, instead of using the private field from struct dma_chan. We add

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: On Thu, 2012-07-05 at 12:29 +0200, Guennadi Liakhovetski wrote: diff --git a/include/linux/sh_dma.h b/include/linux/sh_dma.h index a79f10a..4e83f3e 100644 --- a/include/linux/sh_dma.h +++ b/include/linux/sh_dma.h @@ -27,10 +27,10 @@ struct

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: On Mon, 2012-07-16 at 08:37 +0200, Guennadi Liakhovetski wrote: On Mon, 16 Jul 2012, Vinod Koul wrote: On Thu, 2012-07-05 at 12:29 +0200, Guennadi Liakhovetski wrote: diff --git a/include/linux/sh_dma.h b/include/linux/sh_dma.h index a79f10a

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: On Mon, 2012-07-16 at 09:13 +0200, Guennadi Liakhovetski wrote: They tell the driver how the channel has to be configured to support this specific client. They are values of two specific registers. In fact, CHCR means exactly

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: On Mon, 2012-07-16 at 10:47 +0200, Guennadi Liakhovetski wrote: I want to know what does ccr and mid_rid mean to dmac here? CHCR contains a few fields, some enable various interrupt sources, some specify repeat- and renew-modes, others yet

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: On Mon, 2012-07-16 at 12:01 +0200, Guennadi Liakhovetski wrote: On Mon, 16 Jul 2012, Vinod Koul wrote: On Mon, 2012-07-16 at 10:47 +0200, Guennadi Liakhovetski wrote: I want to know what does ccr and mid_rid mean to dmac here? CHCR

Re: [PATCH 5/7 v2] dma: sh: use an integer slave ID to improve API compatibility

2012-07-16 Thread Guennadi Liakhovetski
On Mon, 16 Jul 2012, Vinod Koul wrote: On Mon, 2012-07-16 at 12:55 +0200, Guennadi Liakhovetski wrote: On Mon, 16 Jul 2012, Vinod Koul wrote: On Mon, 2012-07-16 at 12:01 +0200, Guennadi Liakhovetski wrote: On Mon, 16 Jul 2012, Vinod Koul wrote: On Mon, 2012-07-16 at 10:47

Re: [PATCH 3/4] dma: sh: provide a migration path for slave drivers to stop using .private

2012-07-12 Thread Guennadi Liakhovetski
Hi Paul, Magnus On Thu, 12 Jul 2012, Paul Mundt wrote: > On Thu, Jul 12, 2012 at 06:55:32AM +0900, Magnus Damm wrote: > > Hi Guennadi, > > > > [CC Paul] > > > > On Thu, Jul 5, 2012 at 1:17 AM, Guennadi Liakhovetski > > wrote: > > > This

Re: [PATCH 3/4] dma: sh: provide a migration path for slave drivers to stop using .private

2012-07-12 Thread Guennadi Liakhovetski
Hi Paul, Magnus On Thu, 12 Jul 2012, Paul Mundt wrote: On Thu, Jul 12, 2012 at 06:55:32AM +0900, Magnus Damm wrote: Hi Guennadi, [CC Paul] On Thu, Jul 5, 2012 at 1:17 AM, Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: This patch extends the sh dmaengine driver to support

Re: Boot regression on Mackerel with current mainline

2012-07-10 Thread Guennadi Liakhovetski
On Tue, 10 Jul 2012, Chris Ball wrote: > Hi Guennadi, > > On Tue, Jul 10 2012, Guennadi Liakhovetski wrote: > >> > The latter one looks big because of a rename, but with "-M" it's pretty > >> > trivial. Chris, do you agree? > >>

Re: Boot regression on Mackerel with current mainline

2012-07-10 Thread Guennadi Liakhovetski
Hi Chris On Tue, 10 Jul 2012, Chris Ball wrote: > Hi Guennadi, > > On Wed, Jul 04 2012, Guennadi Liakhovetski wrote: > > On Tue, 3 Jul 2012, Rafael J. Wysocki wrote: > > > >> On Tuesday, July 03, 2012, Guennadi Liakhovetski wrote: > >> > Hi Rafael &

Re: Boot regression on Mackerel with current mainline

2012-07-10 Thread Guennadi Liakhovetski
Hi Chris On Tue, 10 Jul 2012, Chris Ball wrote: Hi Guennadi, On Wed, Jul 04 2012, Guennadi Liakhovetski wrote: On Tue, 3 Jul 2012, Rafael J. Wysocki wrote: On Tuesday, July 03, 2012, Guennadi Liakhovetski wrote: Hi Rafael On Tue, 3 Jul 2012, Rafael J. Wysocki wrote

Re: Boot regression on Mackerel with current mainline

2012-07-10 Thread Guennadi Liakhovetski
On Tue, 10 Jul 2012, Chris Ball wrote: Hi Guennadi, On Tue, Jul 10 2012, Guennadi Liakhovetski wrote: The latter one looks big because of a rename, but with -M it's pretty trivial. Chris, do you agree? Is the minimal fix to just add | IRQF_ONESHOT to the request_threaded_irq

Re: [PATCH] libata: Add MMIO support to pata_sil680

2008-02-25 Thread Guennadi Liakhovetski
happen end of this / beginning of the next week. Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Ple

Re: [PCI] duplicate sysfs symbols getting registered in current git

2008-02-25 Thread Guennadi Liakhovetski
On Mon, 25 Feb 2008, Greg KH wrote: > On Mon, Feb 25, 2008 at 09:31:22PM +0100, Guennadi Liakhovetski wrote: > > On Mon, 25 Feb 2008, Greg KH wrote: > > > > > On Mon, Feb 25, 2008 at 07:15:57PM +0100, Guennadi Liakhovetski wrote: > > > > On Mon, 25 F

Re: [PCI] duplicate sysfs symbols getting registered in current git

2008-02-25 Thread Guennadi Liakhovetski
On Mon, 25 Feb 2008, Greg KH wrote: > On Mon, Feb 25, 2008 at 07:15:57PM +0100, Guennadi Liakhovetski wrote: > > On Mon, 25 Feb 2008, Guennadi Liakhovetski wrote: > > > > > On Tue, 19 Feb 2008, Greg KH wrote: > > > > > > > On Mon, Feb 18, 2008 at

Re: [PCI] duplicate sysfs symbols getting registered in current git

2008-02-25 Thread Guennadi Liakhovetski
On Mon, 25 Feb 2008, Guennadi Liakhovetski wrote: > On Tue, 19 Feb 2008, Greg KH wrote: > > > On Mon, Feb 18, 2008 at 09:52:25PM +0100, Guennadi Liakhovetski wrote: > > > Booting an x86 SMP PC with todays git-snapshot or just with 2.6.25-rc2 > > > getting the

Re: [PCI] duplicate sysfs symbols getting registered in current git

2008-02-25 Thread Guennadi Liakhovetski
On Tue, 19 Feb 2008, Greg KH wrote: > On Mon, Feb 18, 2008 at 09:52:25PM +0100, Guennadi Liakhovetski wrote: > > Booting an x86 SMP PC with todays git-snapshot or just with 2.6.25-rc2 > > getting the following warnings (with a bit of context): > > Can you try enabling

Re: [PCI] duplicate sysfs symbols getting registered in current git

2008-02-25 Thread Guennadi Liakhovetski
On Tue, 19 Feb 2008, Greg KH wrote: On Mon, Feb 18, 2008 at 09:52:25PM +0100, Guennadi Liakhovetski wrote: Booting an x86 SMP PC with todays git-snapshot or just with 2.6.25-rc2 getting the following warnings (with a bit of context): Can you try enabling CONFIG_DEBUG_KOBJECT and sending

Re: [PCI] duplicate sysfs symbols getting registered in current git

2008-02-25 Thread Guennadi Liakhovetski
On Mon, 25 Feb 2008, Guennadi Liakhovetski wrote: On Tue, 19 Feb 2008, Greg KH wrote: On Mon, Feb 18, 2008 at 09:52:25PM +0100, Guennadi Liakhovetski wrote: Booting an x86 SMP PC with todays git-snapshot or just with 2.6.25-rc2 getting the following warnings (with a bit of context

Re: [PCI] duplicate sysfs symbols getting registered in current git

2008-02-25 Thread Guennadi Liakhovetski
On Mon, 25 Feb 2008, Greg KH wrote: On Mon, Feb 25, 2008 at 07:15:57PM +0100, Guennadi Liakhovetski wrote: On Mon, 25 Feb 2008, Guennadi Liakhovetski wrote: On Tue, 19 Feb 2008, Greg KH wrote: On Mon, Feb 18, 2008 at 09:52:25PM +0100, Guennadi Liakhovetski wrote: Booting

Re: [PCI] duplicate sysfs symbols getting registered in current git

2008-02-25 Thread Guennadi Liakhovetski
On Mon, 25 Feb 2008, Greg KH wrote: On Mon, Feb 25, 2008 at 09:31:22PM +0100, Guennadi Liakhovetski wrote: On Mon, 25 Feb 2008, Greg KH wrote: On Mon, Feb 25, 2008 at 07:15:57PM +0100, Guennadi Liakhovetski wrote: On Mon, 25 Feb 2008, Guennadi Liakhovetski wrote: On Tue, 19

Re: [PATCH] libata: Add MMIO support to pata_sil680

2008-02-25 Thread Guennadi Liakhovetski
end of this / beginning of the next week. Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

[PCI] duplicate sysfs symbols getting registered in current git

2008-02-18 Thread Guennadi Liakhovetski
MB PIIX4 USB (rev 01) 00:14.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 02) 01:00.0 VGA compatible controller: Texas Instruments TVP4020 [Permedia 2] (rev 11) Please say if .config is needed, although, theres nothing extraordinary there wrt PCI / ACPI. Booting with "acpi=no

[ALSA] 2.6.25-rc2 compilation broken

2008-02-18 Thread Guennadi Liakhovetski
configuration. Thanks Guennadi --- Guennadi Liakhovetski # # Sound # CONFIG_SOUND=m # # Advanced Linux Sound Architecture # CONFIG_SND=m CONFIG_SND_TIMER=m CONFIG_SND_PCM=m CONFIG_SND_HWDEP=m CONFIG_SND_RAWMIDI=m # CONFIG_SND_SEQUENCER is not set CONFIG_SND_OSSEMUL=y CONFIG_SND_MIXER_OSS=m

[ALSA] 2.6.25-rc2 compilation broken

2008-02-18 Thread Guennadi Liakhovetski
configuration. Thanks Guennadi --- Guennadi Liakhovetski # # Sound # CONFIG_SOUND=m # # Advanced Linux Sound Architecture # CONFIG_SND=m CONFIG_SND_TIMER=m CONFIG_SND_PCM=m CONFIG_SND_HWDEP=m CONFIG_SND_RAWMIDI=m # CONFIG_SND_SEQUENCER is not set CONFIG_SND_OSSEMUL=y CONFIG_SND_MIXER_OSS=m

[PCI] duplicate sysfs symbols getting registered in current git

2008-02-18 Thread Guennadi Liakhovetski
, theres nothing extraordinary there wrt PCI / ACPI. Booting with acpi=noirq. Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo

Re: [PATCH] libata: Add MMIO support to pata_sil680

2008-02-15 Thread Guennadi Liakhovetski
ue with timing ? > > I don't have HW access to this machine. If somebody could send one to me > I could do more investigation. Ben, would an ssh access to such a machine and to a terminal server suffice? Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the

Re: [PATCH] libata: Add MMIO support to pata_sil680

2008-02-15 Thread Guennadi Liakhovetski
and to a terminal server suffice? Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [ACPI X86_64] 2.6.24 doesn't boot on a Core 2 Duo

2008-02-14 Thread Guennadi Liakhovetski
On Thu, 14 Feb 2008, Guennadi Liakhovetski wrote: > 2.6.24.2 fails to boot on the above system with an Intel DQ35JO > motherboard, as do Debian install kernels - both stock etch amd64 and > updated image from Kenshi Muto (kmuto.jp). The only way to boot was with > "acpi=off

[ACPI X86_64] 2.6.24 doesn't boot on a Core 2 Duo

2008-02-14 Thread Guennadi Liakhovetski
problems. Below is ubuntu's dmesg with a place marked where Debian and self-compiled vanilla 2.6.24.2 kernels hang. Tried "pci=noacpi", "acpi=noirq", "noapic", "nolapic", "pci=routeirq" with no success. Thanks Guennadi --- Guennadi Liakhovet

[ACPI X86_64] 2.6.24 doesn't boot on a Core 2 Duo

2008-02-14 Thread Guennadi Liakhovetski
. Below is ubuntu's dmesg with a place marked where Debian and self-compiled vanilla 2.6.24.2 kernels hang. Tried pci=noacpi, acpi=noirq, noapic, nolapic, pci=routeirq with no success. Thanks Guennadi --- Guennadi Liakhovetski [0.00] Linux version 2.6.22-14-generic ([EMAIL PROTECTED]) (gcc

Re: [ACPI X86_64] 2.6.24 doesn't boot on a Core 2 Duo

2008-02-14 Thread Guennadi Liakhovetski
On Thu, 14 Feb 2008, Guennadi Liakhovetski wrote: 2.6.24.2 fails to boot on the above system with an Intel DQ35JO motherboard, as do Debian install kernels - both stock etch amd64 and updated image from Kenshi Muto (kmuto.jp). The only way to boot was with acpi=off. Whereas ubuntu 7.10

[PATCH] introduce is_valid_gpio() predicate and use it in gpiolib.c

2008-02-10 Thread Guennadi Liakhovetski
Introduce a is_valid_gpio() predicate to be used in gpiolib core and drivers. Signed-off-by: Guennadi Liakhovetski <[EMAIL PROTECTED]> --- diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index d8db2f8..5390f46 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpi

Re: [PATCH] Define a NO_GPIO macro to compare against and to use as an invalid GPIO

2008-02-10 Thread Guennadi Liakhovetski
David, you convinced me:-) I'll redo the patch. Just one comment: On Sat, 9 Feb 2008, David Brownell wrote: > On Saturday 09 February 2008, Guennadi Liakhovetski wrote: > > > And when those platforms share drivers, problems > > arise. And the simple and efficient NO_IRQ noti

Re: [PATCH] Define a NO_GPIO macro to compare against and to use as an invalid GPIO

2008-02-10 Thread Guennadi Liakhovetski
David, you convinced me:-) I'll redo the patch. Just one comment: On Sat, 9 Feb 2008, David Brownell wrote: On Saturday 09 February 2008, Guennadi Liakhovetski wrote: And when those platforms share drivers, problems arise. And the simple and efficient NO_IRQ notion, that would fis those

[PATCH] introduce is_valid_gpio() predicate and use it in gpiolib.c

2008-02-10 Thread Guennadi Liakhovetski
Introduce a is_valid_gpio() predicate to be used in gpiolib core and drivers. Signed-off-by: Guennadi Liakhovetski [EMAIL PROTECTED] --- diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index d8db2f8..5390f46 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c @@ -96,7

Re: [PATCH] Define a NO_GPIO macro to compare against and to use as an invalid GPIO

2008-02-09 Thread Guennadi Liakhovetski
On Fri, 8 Feb 2008, David Brownell wrote: > On Thursday 31 January 2008, Guennadi Liakhovetski wrote: > > As discussed on i2c mailing list with David Brownell, and number > > outside of the 0...MAX_INT range is invalid as a GPIO number. > > Define a macro, similar

Re: [PATCH 1/2] prevent gpio chip drivers from unloading while used

2008-02-09 Thread Guennadi Liakhovetski
t; Right. In fact, every time you'd expect driver removal errors to > cause module removal to fail. Maybe this is part of that whole > "should we even *support* rmmod" discussion, which I tuned out. We don't want to start another one here, do we?:-) Thanks Guennadi --- Guenna

Re: [PATCH 1/2] prevent gpio chip drivers from unloading while used

2008-02-09 Thread Guennadi Liakhovetski
should we even *support* rmmod discussion, which I tuned out. We don't want to start another one here, do we?:-) Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info

Re: [PATCH] Define a NO_GPIO macro to compare against and to use as an invalid GPIO

2008-02-09 Thread Guennadi Liakhovetski
On Fri, 8 Feb 2008, David Brownell wrote: On Thursday 31 January 2008, Guennadi Liakhovetski wrote: As discussed on i2c mailing list with David Brownell, and number outside of the 0...MAX_INT range is invalid as a GPIO number. Define a macro, similar to NO_IRQ, to be used as a deliberate

Re: [PATCH 1/2] prevent gpio chip drivers from unloading while used

2008-02-08 Thread Guennadi Liakhovetski
On Fri, 8 Feb 2008, David Brownell wrote: > On Friday 08 February 2008, Guennadi Liakhovetski wrote: > > As long as one or more GPIOs on a gpio chip are used its driver should not > > be unloaded. > > The mechanism currently in place is to have gpiochip_remove() fai

[PATCH] lib/scatterlist.o needed by a module only - link it in unconditionally

2008-02-08 Thread Guennadi Liakhovetski
it must be in obj-y. Signed-off-by: Guennadi Liakhovetski <[EMAIL PROTECTED]> --- diff --git a/lib/Makefile b/lib/Makefile index 543f250..7475da4 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -6,7 +6,7 @@ lib-y := ctype.o string.o vsprintf.o cmdline.o \ rbtree.o radix-tree.o dump_s

[PATCH 2/2] Protect pca953x from being unloaded while its GPIOs are in use

2008-02-08 Thread Guennadi Liakhovetski
This uses the newly introduced owner field in struct gpio_chip to protect pca953x from being unloaded as long as its GPIOs are in use. Signed-off-by: Guennadi Liakhovetski <[EMAIL PROTECTED]> --- diff --git a/drivers/gpio/pca953x.c b/drivers/gpio/pca953x.c index 0bd594d..89cee66

[PATCH 1/2] prevent gpio chip drivers from unloading while used

2008-02-08 Thread Guennadi Liakhovetski
As long as one or more GPIOs on a gpio chip are used its driver should not be unloaded. Signed-off-by: Guennadi Liakhovetski <[EMAIL PROTECTED]> --- Note, that existing drivers do not have to be modified, for example those, that are always statically linked in the kernel, a

Re: [PATCH 1/2] prevent gpio chip drivers from unloading while used

2008-02-08 Thread Guennadi Liakhovetski
On Fri, 8 Feb 2008, David Brownell wrote: On Friday 08 February 2008, Guennadi Liakhovetski wrote: As long as one or more GPIOs on a gpio chip are used its driver should not be unloaded. The mechanism currently in place is to have gpiochip_remove() fail if the platform's teardown

[PATCH 1/2] prevent gpio chip drivers from unloading while used

2008-02-08 Thread Guennadi Liakhovetski
As long as one or more GPIOs on a gpio chip are used its driver should not be unloaded. Signed-off-by: Guennadi Liakhovetski [EMAIL PROTECTED] --- Note, that existing drivers do not have to be modified, for example those, that are always statically linked in the kernel, as long

[PATCH 2/2] Protect pca953x from being unloaded while its GPIOs are in use

2008-02-08 Thread Guennadi Liakhovetski
This uses the newly introduced owner field in struct gpio_chip to protect pca953x from being unloaded as long as its GPIOs are in use. Signed-off-by: Guennadi Liakhovetski [EMAIL PROTECTED] --- diff --git a/drivers/gpio/pca953x.c b/drivers/gpio/pca953x.c index 0bd594d..89cee66 100644

[PATCH] lib/scatterlist.o needed by a module only - link it in unconditionally

2008-02-08 Thread Guennadi Liakhovetski
it must be in obj-y. Signed-off-by: Guennadi Liakhovetski [EMAIL PROTECTED] --- diff --git a/lib/Makefile b/lib/Makefile index 543f250..7475da4 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -6,7 +6,7 @@ lib-y := ctype.o string.o vsprintf.o cmdline.o \ rbtree.o radix-tree.o dump_stack.o

Re: [PATCH] Define a NO_GPIO macro to compare against and to use as an invalid GPIO

2008-02-07 Thread Guennadi Liakhovetski
On Thu, 31 Jan 2008, Guennadi Liakhovetski wrote: > As discussed on i2c mailing list with David Brownell, and number > outside of the 0...MAX_INT range is invalid as a GPIO number. > Define a macro, similar to NO_IRQ, to be used as a deliberate > invalid GPIO, rather than defining a i

Re: [PATCH] Define a NO_GPIO macro to compare against and to use as an invalid GPIO

2008-02-07 Thread Guennadi Liakhovetski
On Thu, 31 Jan 2008, Guennadi Liakhovetski wrote: As discussed on i2c mailing list with David Brownell, and number outside of the 0...MAX_INT range is invalid as a GPIO number. Define a macro, similar to NO_IRQ, to be used as a deliberate invalid GPIO, rather than defining a is_valid_gpio

[X86 ACPI SMP] system slow after cold start if processor module loaded

2008-02-02 Thread Guennadi Liakhovetski
. The system is a dual [EMAIL PROTECTED], Compaq AP400. It is known to have various ACPI bugs, so, this is just another one of them. No idea whether or not this shall and can be fixed. At least wanted to document it in case someone has a similar problem. Thanks Guennadi --- Guennadi Liakhovetski

[X86 ACPI SMP] system slow after cold start if processor module loaded

2008-02-02 Thread Guennadi Liakhovetski
. The system is a dual [EMAIL PROTECTED], Compaq AP400. It is known to have various ACPI bugs, so, this is just another one of them. No idea whether or not this shall and can be fixed. At least wanted to document it in case someone has a similar problem. Thanks Guennadi --- Guennadi Liakhovetski

[PATCH] Define a NO_GPIO macro to compare against and to use as an invalid GPIO

2008-01-31 Thread Guennadi Liakhovetski
As discussed on i2c mailing list with David Brownell, and number outside of the 0...MAX_INT range is invalid as a GPIO number. Define a macro, similar to NO_IRQ, to be used as a deliberate invalid GPIO, rather than defining a is_valid_gpio() macro. Signed-off-by: Guennadi Liakhovetski <[EM

[PATCH] Define a NO_GPIO macro to compare against and to use as an invalid GPIO

2008-01-31 Thread Guennadi Liakhovetski
As discussed on i2c mailing list with David Brownell, and number outside of the 0...MAX_INT range is invalid as a GPIO number. Define a macro, similar to NO_IRQ, to be used as a deliberate invalid GPIO, rather than defining a is_valid_gpio() macro. Signed-off-by: Guennadi Liakhovetski [EMAIL

Re: [PATCH] driver: tcm825x - fix logical typo error

2008-01-25 Thread Guennadi Liakhovetski
On Fri, 25 Jan 2008, Cyrill Gorcunov wrote: > This patch does fix potential NULL pointer dereference > due to logical typo error. > > The issue is pointed out by > Guennadi Liakhovetski <[EMAIL PROTECTED]> > > Signed-off-by: Cyrill Gorcunov <[EMAIL PROTECTED]>

Re: [PATCH] driver: tcm825x - fix logical typo error

2008-01-25 Thread Guennadi Liakhovetski
On Fri, 25 Jan 2008, Cyrill Gorcunov wrote: This patch does fix potential NULL pointer dereference due to logical typo error. The issue is pointed out by Guennadi Liakhovetski [EMAIL PROTECTED] Signed-off-by: Cyrill Gorcunov [EMAIL PROTECTED] --- Index: linux-2.6.git/drivers/media

[MUST-FIX] in today's Linus' git

2008-01-22 Thread Guennadi Liakhovetski
review this file and the whole commit it came in with properly... Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-in

Re: [PATCH] Claim maintainership for block2mtd and update email addresses

2008-01-08 Thread Guennadi Liakhovetski
we want to document it somewhere? Wasn't C-sources originally supposed to be ASCII? So, what we use in sources, what under Documentation or in MAINTAINERS may be different matters? Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line "unsubscribe l

Re: [PATCH] Claim maintainership for block2mtd and update email addresses

2008-01-08 Thread Guennadi Liakhovetski
it somewhere? Wasn't C-sources originally supposed to be ASCII? So, what we use in sources, what under Documentation or in MAINTAINERS may be different matters? Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: programs vanish with 2.6.22+

2007-12-07 Thread Guennadi Liakhovetski
need to manually enable something or run some user-space > app?! > > > > It depends - different options have it differently. Most simple ones > are > > just compile-time, so, you don't have to enable them. Look in "help" > for > > respective debug-options.

Re: programs vanish with 2.6.22+

2007-12-07 Thread Guennadi Liakhovetski
ally enable something or run some user-space app?! It depends - different options have it differently. Most simple ones are just compile-time, so, you don't have to enable them. Look in "help" for respective debug-options. Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscrib

Re: programs vanish with 2.6.22+

2007-12-07 Thread Guennadi Liakhovetski
some user-space app?! It depends - different options have it differently. Most simple ones are just compile-time, so, you don't have to enable them. Look in help for respective debug-options. Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line unsubscribe

Re: programs vanish with 2.6.22+

2007-12-07 Thread Guennadi Liakhovetski
don't have to enable them. Look in help for respective debug-options. Thanks Guennadi --- Guennadi Liakhovetski --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info

Re: programs vanish with 2.6.22+

2007-12-06 Thread Guennadi Liakhovetski
when something is wrong ;) > > > > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to [EMAIL PROTECTED] > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.

Re: programs vanish with 2.6.22+

2007-12-06 Thread Guennadi Liakhovetski
something is wrong ;) -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ --- Guennadi Liakhovetski

Re: [Timers SMP] can this machine be helped?

2007-12-05 Thread Guennadi Liakhovetski
On Mon, 3 Dec 2007, Pavel Machek wrote: > On Mon 2007-12-03 22:45:06, Guennadi Liakhovetski wrote: > > On Sun, 2 Dec 2007, Pavel Machek wrote: > > > > > > I compiled a .24-ish kernel for it with CONFIG_NO_HZ and > > > > CONFIG_HIGH_RES_TIMERS. To g

Re: [Timers SMP] can this machine be helped?

2007-12-05 Thread Guennadi Liakhovetski
On Mon, 3 Dec 2007, Pavel Machek wrote: On Mon 2007-12-03 22:45:06, Guennadi Liakhovetski wrote: On Sun, 2 Dec 2007, Pavel Machek wrote: I compiled a .24-ish kernel for it with CONFIG_NO_HZ and CONFIG_HIGH_RES_TIMERS. To get the system boot at least sometimes I have

Re: [Timers SMP] can this machine be helped?

2007-12-04 Thread Guennadi Liakhovetski
On Tue, 4 Dec 2007, Robert Hancock wrote: > Guennadi Liakhovetski wrote: > > > > I've got an old 2xP-II @ 400MHz Compaq AP400 system, which I'm still using. > > It has many peculiarities, so, I wouldn't be surprised if the answer to my > > questions would be "s

Re: [Timers SMP] can this machine be helped?

2007-12-04 Thread Guennadi Liakhovetski
On Tue, 4 Dec 2007, Robert Hancock wrote: Guennadi Liakhovetski wrote: I've got an old 2xP-II @ 400MHz Compaq AP400 system, which I'm still using. It has many peculiarities, so, I wouldn't be surprised if the answer to my questions would be sorry, the patient is rather dead than alive

Re: [Timers SMP] can this machine be helped?

2007-12-03 Thread Guennadi Liakhovetski
On Mon, 3 Dec 2007, Pavel Machek wrote: > On Mon 2007-12-03 22:45:06, Guennadi Liakhovetski wrote: > > On Sun, 2 Dec 2007, Pavel Machek wrote: > > > > > CR0: 8005003b CR2: 081dcf88 CR3: 07e46000 CR4: 02d0 > > > > DR0: DR1: DR2:

Re: [Timers SMP] can this machine be helped?

2007-12-03 Thread Guennadi Liakhovetski
DR1: DR2: DR3: > > DR6: 0ff0 DR7: 0400 > > [] show_trace_log_lvl+0x1a/0x30 > > [] show_trace+0x12/0x20 > > ...and disable softlockup watchdog, too... So, you think those BUGs are bogus? Thanks Guennadi --- Guennadi Liakhovetski --

Re: [Timers SMP] can this machine be helped?

2007-12-03 Thread Guennadi Liakhovetski
] show_trace_log_lvl+0x1a/0x30 [c0105f42] show_trace+0x12/0x20 ...and disable softlockup watchdog, too... So, you think those BUGs are bogus? Thanks Guennadi --- Guennadi Liakhovetski -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED

<    3   4   5   6   7   8   9   10   11   >