Re: [RFCv5 3/9] mm: cma: Added SysFS support

2010-09-06 Thread Michał Nazarewicz
On Tue, Sep 07, 2010 at 07:31:30AM +0200, Micha?? Nazarewicz wrote: Thanks for reviewing the sysfs part. Actually, I was never really sure if I shouldn't rather put this code to debugfs and you got me convinced that I should. Sysfs somehow looked more appealing from kernel's API point of view -

Re: [RFCv5 3/9] mm: cma: Added SysFS support

2010-09-06 Thread Greg KH
On Tue, Sep 07, 2010 at 07:31:30AM +0200, Micha?? Nazarewicz wrote: > Hello Greg, > > Thanks for reviewing the sysfs part. Actually, I was never really sure > if I shouldn't rather put this code to debugfs and you got me convinced > that I should. Sysfs somehow looked more appealing from kernel's

Re: [RFCv5 3/9] mm: cma: Added SysFS support

2010-09-06 Thread Michał Nazarewicz
Hello Greg, Thanks for reviewing the sysfs part. Actually, I was never really sure if I shouldn't rather put this code to debugfs and you got me convinced that I should. Sysfs somehow looked more appealing from kernel's API point of view -- things seem to be more organised in sysfs than in debu

Re: [RFCv5 0/9] CMA + VCMM integration

2010-09-06 Thread Greg KH
On Tue, Sep 07, 2010 at 03:40:46AM +0200, Micha?? Nazarewicz wrote: > On Mon, 06 Sep 2010 23:09:05 +0200, Greg KH wrote: > >> On Mon, Sep 06, 2010 at 08:33:50AM +0200, Michal Nazarewicz wrote: >>> Hello everyone, >>> >>> This patchset introduces a draft of a redesign of Zach Pfeffer's >>> VCMM. >>

Re: [RFCv5 8/9] mm: vcm: Sample driver added

2010-09-06 Thread Michał Nazarewicz
On Mon, 06 Sep 2010 23:10:54 +0200, Greg KH wrote: On Mon, Sep 06, 2010 at 08:33:58AM +0200, Michal Nazarewicz wrote: --- /dev/null +++ b/include/linux/vcm-sample.h Don't put "sample" code in include/linux/ please. That's just cluttering up the place, don't you think? Especially as no one

Re: [RFCv5 0/9] CMA + VCMM integration

2010-09-06 Thread Michał Nazarewicz
On Mon, 06 Sep 2010 23:09:05 +0200, Greg KH wrote: On Mon, Sep 06, 2010 at 08:33:50AM +0200, Michal Nazarewicz wrote: Hello everyone, This patchset introduces a draft of a redesign of Zach Pfeffer's VCMM. What is a VCMM? Virtual Contiguous Memory Manager. The version posted by Zach can b

Re: [PATCH 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-06 Thread Maxim Levitsky
On Mon, 2010-09-06 at 23:56 +0200, David Härdeman wrote: > On Tue, Sep 07, 2010 at 12:26:05AM +0300, Maxim Levitsky wrote: > > Hi, > > > > Here is full overview of my patches: > > What changed from V4? Nothing other that 2 build fixes that I forgot to include. I also cced linux-media because I w

Re: [PATCH 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-06 Thread David Härdeman
On Tue, Sep 07, 2010 at 12:26:05AM +0300, Maxim Levitsky wrote: > Hi, > > Here is full overview of my patches: What changed from V4? -- David Härdeman -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo

[PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-06 Thread Maxim Levitsky
Add new event types for timeout & carrier report Move timeout handling from ir_raw_event_store_with_filter to ir-lirc-codec, where it is really needed. Now lirc bridge ensures proper gap handling. Extend lirc bridge for carrier & timeout reports Note: all new ir_raw_event variables now should be i

[PATCH 8/8] IR: ene_ir: add support for carrier reports

2010-09-06 Thread Maxim Levitsky
Signed-off-by: Maxim Levitsky --- drivers/media/IR/ene_ir.c | 37 + 1 files changed, 29 insertions(+), 8 deletions(-) diff --git a/drivers/media/IR/ene_ir.c b/drivers/media/IR/ene_ir.c index dc32509..f1ee153 100644 --- a/drivers/media/IR/ene_ir.c +++ b/drive

[PATCH 5/8] IR: extend MCE keymap.

2010-09-06 Thread Maxim Levitsky
These keys are found on remote bundled with Toshiba Qosmio F50-10q. Found and tested by, Sami R Signed-off-by: Maxim Levitsky --- drivers/media/IR/keymaps/rc-rc6-mce.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/media/IR/keymaps/rc-rc6-mce.c b/drivers/me

[PATCH 2/8] IR: make sure we register the input device when it is safe to do so.

2010-09-06 Thread Maxim Levitsky
As soon as input device is registered, it might be accessed (and it is) This can trigger a hardware interrupt that can access not yet initialized ir->raw, (by sending a sample) This can be reproduced by holding down a remote button and reloading the module. And this always crashes the systems wher

[PATCH 3/8] IR: fix duty cycle capability

2010-09-06 Thread Maxim Levitsky
Due to typo lirc bridge enabled wrong capability. Signed-off-by: Maxim Levitsky --- drivers/media/IR/ir-lirc-codec.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/IR/ir-lirc-codec.c b/drivers/media/IR/ir-lirc-codec.c index 77b5946..e63f757 100644 --- a/d

[PATCH 4/8] IR: fix keys beeing stuck down forever.

2010-09-06 Thread Maxim Levitsky
The logic in ir_timer_keyup was inverted. In case that values aren't equal, the meaning of the time_is_after_eq_jiffies(ir->keyup_jiffies) is that ir->keyup_jiffies is after the the jiffies or equally that that jiffies are before the the ir->keyup_jiffies which is exactly the situation we want to

[PATCH 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-06 Thread Maxim Levitsky
Hi, Here is full overview of my patches: Patch #1 fixes races in ir thread. It fixes the case when ktherad_stop waits forever for the thread. This happens on module unload and therefore it never finishes. Sorry for introducing this bug. Patch #2, fixes a crash on my module load. It happens becau

[PATCH 1/8] IR: plug races in IR raw thread.

2010-09-06 Thread Maxim Levitsky
Unfortunelly (my fault) the kernel thread that now handles IR processing has classical races in regard to wakeup and stop. This patch hopefully closes them all. Tested with module reload running in a loop, while receiver is blasted with IR data for 10 minutes. Signed-off-by: Maxim Levitsky --- d

Re: [RFCv5 0/9] CMA + VCMM integration

2010-09-06 Thread Greg KH
On Mon, Sep 06, 2010 at 08:33:50AM +0200, Michal Nazarewicz wrote: > Hello everyone, > > This patchset introduces a draft of a redesign of Zach Pfeffer's > VCMM. What is a VCMM? What is a CMA? > Not all of the functionality of the original VCMM has been > ported into this patchset. This is mos

Re: [RFCv5 8/9] mm: vcm: Sample driver added

2010-09-06 Thread Greg KH
On Mon, Sep 06, 2010 at 08:33:58AM +0200, Michal Nazarewicz wrote: > --- /dev/null > +++ b/include/linux/vcm-sample.h Don't put "sample" code in include/linux/ please. That's just cluttering up the place, don't you think? Especially as no one else needs the file there... thanks, greg k-h -- To

Re: [RFCv5 3/9] mm: cma: Added SysFS support

2010-09-06 Thread Greg KH
On Mon, Sep 06, 2010 at 08:33:53AM +0200, Michal Nazarewicz wrote: > +++ b/Documentation/ABI/testing/sysfs-kernel-mm-contiguous > @@ -0,0 +1,53 @@ > +What:/sys/kernel/mm/contiguous/ > +Date:August 2010 > +Contact: Michal Nazarewicz > +Description: > +

[cron job] v4l-dvb daily build 2.6.26 and up: ERRORS

2010-09-06 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Mon Sep 6 19:00:05 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 15139:6e0befab696a git master:

[PATCH] Illuminators and status LED controls

2010-09-06 Thread Jean-Francois Moine
Hi, This new proposal cancels the previous 'LED control' patch. Cheers. -- Ken ar c'hentañ | ** Breizh ha Linux atav! ** Jef | http://moinejf.free.fr/ Some media devices (microscopes) may have one or many illuminators, and most webcams have a status LED whi

Re: [git:v4l-dvb/v2.6.37] V4L/DVB: gspca - main: Fix a crash of some webcams on ARM arch

2010-09-06 Thread Jean-Francois Moine
On Mon, 06 Sep 2010 17:57:25 +0200 Mauro Carvalho Chehab wrote: > Subject: V4L/DVB: gspca - main: Fix a crash of some webcams on ARM > arch > Author: Jason Wang > Date:Fri Sep 3 06:57:19 2010 -0300 Hi Mauro, You put this important fix in staging/2.6.37. Cannot it go to 2.6.36? Cheers. -

Re: [RFC/PATCH v4 08/11] media: Links setup

2010-09-06 Thread Hans Verkuil
On Wednesday, September 01, 2010 16:08:29 Laurent Pinchart wrote: > Hi Hans, > > On Saturday 28 August 2010 13:14:18 Hans Verkuil wrote: > > On Friday, August 20, 2010 17:29:10 Laurent Pinchart wrote: > > [snip] > > > > +/** > > > + * media_entity_remote_pad - Locate the pad at the remote end of

Re: [RFC/PATCH v4 07/11] media: Entities, pads and links enumeration

2010-09-06 Thread Hans Verkuil
On Wednesday, September 01, 2010 16:05:10 Laurent Pinchart wrote: > Hi Hans, > > On Saturday 28 August 2010 13:02:22 Hans Verkuil wrote: > > On Friday, August 20, 2010 17:29:09 Laurent Pinchart wrote: > > [snip] > > > > diff --git a/Documentation/media-framework.txt > > > b/Documentation/media-f

[GIT PULL REQUEST] IR updates for 2.6.36

2010-09-06 Thread Jarod Wilson
Hi Mauro, Please pull the streamzap in-kernel decoding support patch and a trivial mceusb driver patch that just adds two new device IDs in for 2.6.36. The following changes since commit 67ac062a5138ed446a821051fddd798a01478f85: V4L/DVB: Fix regression for BeholdTV Columbus (2010-08-24 10:39:3

Re: Some info about the AverTV A835

2010-09-06 Thread Joel Wiramu Pauling
it is an af9035, there are some, buggy and old 3rd party vendor drivers floating around that had up to 2.6.28 kernel targets in the make files, and can be hacked to sorta work with .31 kernels. They are buggy and unstable however, as the af9035 chip and the tuners that are commonly packaged with i

Some info about the AverTV A835

2010-09-06 Thread Jordi Verdugo
Hello all. I have an Avermedia Volar HD Pro (A835). Since 2 month ago I was searching info and news about the support of this device on Linux and now I found a spanish forum[0] that seems to explain how you can get this device working. I will try it with my AverTV, but my device its the Pro model

Pull request: http://linuxtv.org/hg/~hgoede/ibmcam3 : new xirlink_cit + konica drivers

2010-09-06 Thread Hans de Goede
Hi Mauro, Please pull from: http://linuxtv.org/hg/~hgoede/ibmcam3 Which is my gspca tree which features 2 new (rewritten old v4l1 drivers) gspca subdrivers for xirlink cit and konica chipset webcams. The complete pull consists of the following commits: 4 minutes Hans de Goede gspca_xirl

RE: [PATCH 0/2] V4L/DVB: OMAP_VOUT: Allow omap_vout to build without VRFB

2010-09-06 Thread Taneja, Archit
Hi, Hiremath, Vaibhav wrote: >> -Original Message- >> From: Taneja, Archit >> Sent: Monday, September 06, 2010 9:31 AM >> To: Hiremath, Vaibhav >> Cc: linux-o...@vger.kernel.org; linux-media@vger.kernel.org >> Subject: RE: [PATCH 0/2] V4L/DVB: OMAP_VOUT: Allow omap_vout to build >> without

RE: [PATCH 0/2] V4L/DVB: OMAP_VOUT: Allow omap_vout to build without VRFB

2010-09-06 Thread Hiremath, Vaibhav
> -Original Message- > From: Taneja, Archit > Sent: Monday, September 06, 2010 9:31 AM > To: Hiremath, Vaibhav > Cc: linux-o...@vger.kernel.org; linux-media@vger.kernel.org > Subject: RE: [PATCH 0/2] V4L/DVB: OMAP_VOUT: Allow omap_vout to build > without VRFB > > Hi, > > Hiremath, Vaibhav

Re: [PATCH 8/8] v4l: radio: si470x: fix unneeded free_irq() call

2010-09-06 Thread Joonyoung Shim
On 2010-09-06 오후 3:53, Marek Szyprowski wrote: In case of error during probe() the driver calls free_irq() function on not yet allocated irq. This patches fixes the call sequence in case of the error. I sent this fix patch but it didn't go to linux-media ML by certain reason. Anyway this is go

Re: [PATCH 8/8] v4l: radio: si470x: fix unneeded free_irq() call

2010-09-06 Thread Jean Delvare
On Mon, 06 Sep 2010 08:53:50 +0200, Marek Szyprowski wrote: > In case of error during probe() the driver calls free_irq() function > on not yet allocated irq. This patches fixes the call sequence in case of > the error. > > Signed-off-by: Marek Szyprowski > Signed-off-by: Kyungmin Park > CC: Tob