Re: [PATCH v3] [media] vb2: Add support for capture_dma_bidirectional queue flag

2016-10-20 Thread Sakari Ailus
Hi Thierry, On Thu, Oct 20, 2016 at 10:56:04AM +0200, Thierry Escande wrote: > From: Pawel Osciak > > When this flag is set for CAPTURE queues by the driver on calling > vb2_queue_init(), it forces the buffers on the queue to be > allocated/mapped with DMA_BIDIRECTIONAL direction flag instead of

cron job: media_tree daily build: ERRORS

2016-10-20 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Fri Oct 21 05:00:14 CEST 2016 media-tree git hash:43ea43b9d8b27b7acd443ec59319faa3cdb8a616 media_build gi

China Large Aluminum castings supplier.

2016-10-20 Thread Bob
Hello, Here is the experienced manufactuer of aluminum castings with advanced machining equipments. To reduce cost, manufacturers in your market are buying casting parts and component from us. We can supply aluminum die alloy, gravity casting and sand casting to meet your different demand. Al

Re: [PATCH 00/10] mm: adjust get_user_pages* functions to explicitly pass FOLL_* flags

2016-10-20 Thread Michal Hocko
On Wed 19-10-16 10:23:55, Dave Hansen wrote: > On 10/19/2016 10:01 AM, Michal Hocko wrote: > > The question I had earlier was whether this has to be an explicit FOLL > > flag used by g-u-p users or we can just use it internally when mm != > > current->mm > > The reason I chose not to do that was t

Re: [PATCH v2 48/58] uvc: don't break long lines

2016-10-20 Thread Laurent Pinchart
Hi Mauro, Thank you for the patch. On Tuesday 18 Oct 2016 18:46:00 Mauro Carvalho Chehab wrote: > Due to the 80-cols restrictions, and latter due to checkpatch > warnings, several strings were broken into multiple lines. This > is not considered a good practice anymore, as it makes harder > to gr

Re: [PATCH v2 54/58] i2c: don't break long lines

2016-10-20 Thread Laurent Pinchart
Hi Mauro, Thank you for the patch. On Tuesday 18 Oct 2016 18:46:06 Mauro Carvalho Chehab wrote: > Due to the 80-cols restrictions, and latter due to checkpatch > warnings, several strings were broken into multiple lines. This > is not considered a good practice anymore, as it makes harder > to gr

Re: [PATCH v2 0/3] r8a7793 Gose video input support

2016-10-20 Thread Simon Horman
Hi Ulrich, On Tue, Oct 18, 2016 at 05:02:20PM +0200, Ulrich Hecht wrote: > Hi! > > This is a by-the-datasheet implementation of analog and digital video input > on the Gose board. > > I have tried to address all concerns raised by reviewers, with the exception > of the composite input patch, whi

Re: [PATCH v2 2/2] ARM: dts: koelsch: add HDMI input

2016-10-20 Thread Simon Horman
On Wed, Oct 19, 2016 at 09:33:11AM +0200, Geert Uytterhoeven wrote: > On Tue, Oct 18, 2016 at 5:01 PM, Ulrich Hecht > wrote: > > From: Hans Verkuil > > > > Add support in the dts for the HDMI input. Based on the Lager dts > > patch from Ultich Hecht. > > Ulrich ;-) I have queued up this patch w

Re: [PATCH v2 0/2] Renesas Lager/Koelsch HDMI input

2016-10-20 Thread Simon Horman
On Tue, Oct 18, 2016 at 06:17:25PM +0300, Laurent Pinchart wrote: > Hi Ulrich, > > Thank you for the patches. > > For the whole series, > > Reviewed-by: Laurent Pinchart Thanks, series applied with Laurent's tag. -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the

[PATCH v3] [media] vb2: Add support for capture_dma_bidirectional queue flag

2016-10-20 Thread Thierry Escande
From: Pawel Osciak When this flag is set for CAPTURE queues by the driver on calling vb2_queue_init(), it forces the buffers on the queue to be allocated/mapped with DMA_BIDIRECTIONAL direction flag instead of DMA_FROM_DEVICE. This allows the device not only to write to the buffers, but also read

Re: [PATCH 1/2] [media] vb2: Store dma_dir in vb2_queue

2016-10-20 Thread Thierry Escande
Hi Sakari, On 19/10/2016 23:29, Sakari Ailus wrote: Hi Thierry, On Wed, Oct 19, 2016 at 10:24:16AM +0200, Thierry Escande wrote: From: Pawel Osciak Store dma_dir in struct vb2_queue and reuse it, instead of recalculating it each time. Signed-off-by: Pawel Osciak Tested-by: Pawel Osciak Re