Re: [PATCH 2/2] media: imx355: fix wrong order in test pattern menus

2018-11-26 Thread Sakari Ailus
Hi Bing Bu, On Mon, Nov 26, 2018 at 03:43:34PM +0800, bingbu@intel.com wrote: > From: Bingbu Cao > > current imx355 test pattern order in ctrl menu > is not correct, this patch fixes it. > > Signed-off-by: Bingbu Cao > --- > drivers/media/i2c/imx355.c | 2 +- > 1 file changed, 1 insertion

Re: [PATCH 2/2] media: imx355: fix wrong order in test pattern menus

2018-11-26 Thread Bingbu Cao
On 11/26/2018 04:57 PM, Sakari Ailus wrote: Hi Bing Bu, On Mon, Nov 26, 2018 at 03:43:34PM +0800, bingbu@intel.com wrote: From: Bingbu Cao current imx355 test pattern order in ctrl menu is not correct, this patch fixes it. Signed-off-by: Bingbu Cao --- drivers/media/i2c/imx355.c |

[PATCH 1/1] v4l: ioctl: Allow drivers to fill in the format description

2018-11-26 Thread Sakari Ailus
The v4l_fill_fmtdesc() function does a good job in filling in pixelformat description. While generally all drivers should depend on this function doing the job, staging drivers that use their own formats may not. Allow staging drivers to fill in their own formats by checking whether the descriptio

Re: [PATCH 3/3] media: stkwebcam: Bugfix for wrong return values

2018-11-26 Thread Kieran Bingham
Hi Andreas, Thank you for the patch, On 23/11/2018 16:14, Andreas Pape wrote: > usb_control_msg returns in case of a successfully sent message the number > of sent bytes as a positive number. Don't use this value as a return value > for stk_camera_read_reg, as a non-zero return value is used as a

Re: [PATCH 2/3] media: stkwebcam: Bugfix for not correctly initialized camera

2018-11-26 Thread Kieran Bingham
Hi Andreas, Thank you for the patch, On 23/11/2018 16:14, Andreas Pape wrote: > stk_start_stream can only be called successfully if stk_initialise and > stk_setup_format are called before. When using e.g. cheese it was observed > that stk_initialise and stk_setup_format have not been called befor

Re: [PATCH 1/3] media: stkwebcam: Support for ASUS A6VM notebook added.

2018-11-26 Thread Kieran Bingham
Hi Andreas, Thank you for the patch, On 23/11/2018 16:14, Andreas Pape wrote: > The ASUS A6VM notebook has a built in stk11xx webcam which is mounted > in a way that the video is vertically and horizontally flipped. > Therefore this notebook is added to the special handling in the driver > to aut

RE: [PATCH v1 1/1] media: atmel-isc: Add safety checks for NULL isc->raw_fmt struct

2018-11-26 Thread Ken Sloat
> On 21.11.2018 16:50, Ken Sloat wrote: > >>> From: Ken Sloat > >>> > >>> In some usages isc->raw_fmt will not be initialized. If this is the > >>> case, it is very possible that a NULL struct de-reference will > >>> occur, as this member is referenced many times. > > > >> Hello Ken, > > > >> Do

Re: [PATCH v3] media: video-i2c: check if chip struct has set_power function

2018-11-26 Thread Hans Verkuil
On 11/25/2018 05:55 PM, Sakari Ailus wrote: > Hi Matt, > > On Sat, Nov 24, 2018 at 02:03:23PM -0800, Matt Ranostay wrote: >> Not all future supported video chips will always have power management >> support, and so it is important to check before calling set_power() is >> defined. >> >> Cc: Sakari

[GIT PULL FOR v4.21] venus fixes

2018-11-26 Thread Hans Verkuil
The following changes since commit 708d75fe1c7c6e9abc5381b6fcc32b49830383d0: media: dvb-pll: don't re-validate tuner frequencies (2018-11-23 12:27:18 -0500) are available in the Git repository at: git://linuxtv.org/hverkuil/media_tree.git tags/br-v4.21f for you to fetch changes up to 6d26a

Re: [PATCH v2 4/6] media: mt9m111: allow to setup pixclk polarity

2018-11-26 Thread Marco Felsch
Hi Sakari, On 18-11-16 15:32, Sakari Ailus wrote: > Hi Marco, Enrico, > > On Mon, Oct 29, 2018 at 07:24:08PM +0100, Marco Felsch wrote: > > From: Enrico Scholz > > > > The chip can be configured to output data transitions on the > > rising or falling edge of PIXCLK (Datasheet R58:1[9]), default

Re: [PATCH v3] media: video-i2c: check if chip struct has set_power function

2018-11-26 Thread Matt Ranostay
On Mon, Nov 26, 2018 at 2:50 PM Hans Verkuil wrote: > > On 11/25/2018 05:55 PM, Sakari Ailus wrote: > > Hi Matt, > > > > On Sat, Nov 24, 2018 at 02:03:23PM -0800, Matt Ranostay wrote: > >> Not all future supported video chips will always have power management > >> support, and so it is important t

Re: [PATCH v2 3/6] media: mt9m111: add support to select formats and fps for {Q,SXGA}

2018-11-26 Thread Marco Felsch
Hi Sakari, Hans, On 18-11-16 15:33, Sakari Ailus wrote: > Hi Hans, > > On Fri, Nov 16, 2018 at 02:31:01PM +0100, Hans Verkuil wrote: > > On 11/16/2018 02:26 PM, Sakari Ailus wrote: > > > Hi Marco, Michael, > > > > > > On Mon, Oct 29, 2018 at 07:24:07PM +0100, Marco Felsch wrote: > > >> From: Mic

[PATCH 2/2] [media] v4l2-pci-skeleton: replace vb2_buffer with vb2_v4l2_buffer

2018-11-26 Thread Michael Tretter
Commit 2d7007153f0c ("[media] media: videobuf2: Restructure vb2_buffer") replaced vb2_buffer with vb2_v4l2_buffer in all v4l2 drivers. The restructuring skipped the v4l2-pci-skeleton, probably because it resides outside the drivers directory. The v4l2_buf_ops assume that the passed buffer is a vb2

[PATCH 1/2] [media] v4l2-pci-skeleton: depend on CONFIG_SAMPLES

2018-11-26 Thread Michael Tretter
Commit 0185f8501762 ("[media] samples: v4l: from Documentation to samples directory") moved the v4l2-pci-skeleton driver to the samples directory. The samples are only be built, if CONFIG_SAMPLES is enabled. Therefore, VIDEO_PCI_SKELETON is not enough to build the v4l2-pci-skeleton driver, but SAM

[PATCH 0/2] Fix v4l2-pci-skeleton driver

2018-11-26 Thread Michael Tretter
This series fixes the v4l2-pci-skeleton driver to make it usable as a reference for new v4l2 drivers again. The driver was skipped when replacing vb2_buffer with vb2_v4l2_buffers for v4l2 drivers. Moreover, VIDEO_PCI_SKELETON did not ensure that it is actually build. Michael Tretter (2): [media

[PATCH v3] [bug/urgent] dvb-usb-v2: Fix incorrect use of transfer_flags URB_FREE_BUFFER

2018-11-26 Thread Malcolm Priestley
In commit 1a0c10ed7b media: dvb-usb-v2: stop using coherent memory for URBs incorrectly adds URB_FREE_BUFFER after every urb transfer. It cannot use this flag because it reconfigures the URBs accordingly to suit connected devices. In doing a call to usb_free_urb is made and invertedly frees the bu

[PATCH] media: adv7604 added include of linux/interrupt.h

2018-11-26 Thread Jasmin J.
From: Jasmin Jessich On older Kernels (prior to 4.15) irqreturn_t and devm_request_threaded_irq is not defined when compiling adv7604.c. It seems more recent Kernels include it via another header which is included by adv7604.c. Now we include linux/interrupt.h explicitly to get the type also defi

Re: [PATCH] v4l2-ioctl: Zero v4l2_pix_format_mplane reserved fields

2018-11-26 Thread Ezequiel Garcia
On Mon, 2018-11-26 at 13:14 +0900, Tomasz Figa wrote: > Hi Ezequiel, > > On Sat, Nov 24, 2018 at 2:20 AM Ezequiel Garcia > wrote: > > Make the core set the reserved fields to zero in > > v4l2_pix_format_mplane and v4l2_plane_pix_format structs, > > for _MPLANE queue types. > > > > Moving this t

[no subject]

2018-11-26 Thread Offer
-- Guten Tag, Wir sind eine registrierte private Geldverleiher. Wir geben Kredite an Firmen, Einzelpersonen, die ihre finanzielle Status auf der ganzen Welt aktualisieren müssen, mit minimalen jährlichen Zinsen von 2% .reply, wenn nötig. Good Day, We are a registered private money lender. We give

Re: [PATCH 2/2] media: imx355: fix wrong order in test pattern menus

2018-11-26 Thread Bingbu Cao
On 11/26/2018 04:57 PM, Sakari Ailus wrote: Hi Bing Bu, On Mon, Nov 26, 2018 at 03:43:34PM +0800, bingbu@intel.com wrote: From: Bingbu Cao current imx355 test pattern order in ctrl menu is not correct, this patch fixes it. Signed-off-by: Bingbu Cao --- drivers/media/i2c/imx355.c |

[PATCH] media: unify some sony camera sensors pattern naming

2018-11-26 Thread bingbu . cao
From: Bingbu Cao Some Sony camera sensors have same test pattern definitions, this patch unify the pattern naming to make it more clear to the userspace. Suggested-by: Sakari Ailus Signed-off-by: Bingbu Cao --- drivers/media/i2c/imx258.c | 8 drivers/media/i2c/imx319.c | 8

cron job: media_tree daily build: ERRORS

2018-11-26 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: Tue Nov 27 05:00:11 CET 2018 media-tree git hash:708d75fe1c7c6e9abc5381b6fcc32b49830383d0 media_build git

Re: [PATCH 2/2] media: sun6i-csi: manually fix other coding style issues

2018-11-26 Thread Maxime Ripard
On Fri, Nov 23, 2018 at 05:13:23AM -0500, Mauro Carvalho Chehab wrote: > There are a few other coding style issues reported by checkpatch > while in --strict mode. Fix the ones that make sense. > > Signed-off-by: Mauro Carvalho Chehab For both patches, Acked-by: Maxime Ripard Thanks! Maxime

Re: [PATCH v2 4/4] [DO NOT MERGE] ARM: dts: sun8i: Add CAM500B camera module to the Nano Pi M1+

2018-11-26 Thread Maxime Ripard
On Fri, Nov 23, 2018 at 11:51:38AM +0530, Jagan Teki wrote: > On Wed, Nov 14, 2018 at 8:29 PM Maxime Ripard > wrote: > > From: Mylène Josserand > > > > The Nano Pi M1+ comes with an optional sensor based on the ov5640 from > > Omnivision. Enable the support for it in the DT. > > > > Signed-off-b

Re: [PATCH] v4l2-ioctl: Zero v4l2_pix_format_mplane reserved fields

2018-11-26 Thread Tomasz Figa
On Tue, Nov 27, 2018 at 8:29 AM Ezequiel Garcia wrote: > > On Mon, 2018-11-26 at 13:14 +0900, Tomasz Figa wrote: > > Hi Ezequiel, > > > > On Sat, Nov 24, 2018 at 2:20 AM Ezequiel Garcia > > wrote: > > > Make the core set the reserved fields to zero in > > > v4l2_pix_format_mplane and v4l2_plane_

[PATCH] media: cedrus: Fix a NULL vs IS_ERR() check

2018-11-26 Thread Dan Carpenter
The devm_ioremap_resource() function doesn't return NULL pointers, it returns error pointers. Fixes: 50e761516f2b ("media: platform: Add Cedrus VPU decoder driver") Signed-off-by: Dan Carpenter --- drivers/staging/media/sunxi/cedrus/cedrus_hw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deleti

Re: [PATCH] media: cedrus: Fix a NULL vs IS_ERR() check

2018-11-26 Thread Paul Kocialkowski
On Mon, 2018-11-26 at 11:10 +0300, Dan Carpenter wrote: > The devm_ioremap_resource() function doesn't return NULL pointers, it > returns error pointers. Good catch and thanks for the patch! > Fixes: 50e761516f2b ("media: platform: Add Cedrus VPU decoder driver") > Signed-off-by: Dan Carpenter

Re: [PATCH v2] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Alexandre Courbot
Hi Malathi, On Tue, Nov 20, 2018 at 3:53 PM Malathi Gottam wrote: > > Accept the buffer size requested by client and compare it > against driver calculated size and set the maximum to > bitstream plane. > > Signed-off-by: Malathi Gottam > --- > drivers/media/platform/qcom/venus/venc.c | 13

Re: [PATCH] media: venus: fix reported size of 0-length buffers

2018-11-26 Thread Alexandre Courbot
On Fri, Nov 23, 2018 at 8:53 AM Nicolas Dufresne wrote: > > Le jeudi 22 novembre 2018 à 17:31 +0900, Alexandre Courbot a écrit : > > On Fri, Nov 16, 2018 at 1:49 AM Nicolas Dufresne > > wrote: > > > Le mercredi 14 novembre 2018 à 13:12 +0900, Alexandre Courbot a écrit : > > > > On Wed, Nov 14, 2

Re: [PATCH] media: venus: fix reported size of 0-length buffers

2018-11-26 Thread Stanimir Varbanov
Hi Alex, On 11/22/18 10:31 AM, Alexandre Courbot wrote: > On Fri, Nov 16, 2018 at 1:49 AM Nicolas Dufresne wrote: >> >> Le mercredi 14 novembre 2018 à 13:12 +0900, Alexandre Courbot a écrit : >>> On Wed, Nov 14, 2018 at 3:54 AM Nicolas Dufresne >>> wrote: Le mar. 13 nov. 2018 04

Re: [PATCH v2] media: bpf: add bpf function to report mouse movement

2018-11-26 Thread Sean Young
Hi Daniel, On Mon, Nov 26, 2018 at 01:55:36AM +0100, Daniel Borkmann wrote: > Hi Sean, > > On 11/23/2018 12:50 PM, Sean Young wrote: > > Some IR remotes have a directional pad or other pointer-like thing that > > can be used as a mouse. Make it possible to decode these types of IR > > protocols i

Re: [PATCH v2] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Stanimir Varbanov
Hi Malathi, thanks for the patch! On 11/20/18 8:53 AM, Malathi Gottam wrote: > Accept the buffer size requested by client and compare it > against driver calculated size and set the maximum to > bitstream plane. > > Signed-off-by: Malathi Gottam > --- > drivers/media/platform/qcom/venus/venc.c

Re: [PATCH] media: venus: fix reported size of 0-length buffers

2018-11-26 Thread Stanimir Varbanov
Hi Alex, Thanks for the patch! On 11/13/18 11:30 AM, Alexandre Courbot wrote: > The last buffer is often signaled by an empty buffer with the > V4L2_BUF_FLAG_LAST flag set. Such buffers were returned with the > bytesused field set to the full size of the OPB, which leads > user-space to believe t

[PATCH v3] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Malathi Gottam
Accept the buffer size requested by client and compare it against driver calculated size and set the maximum to bitstream plane. Signed-off-by: Malathi Gottam --- drivers/media/platform/qcom/venus/venc.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/me

[PATCH V2] mm: Replace all open encodings for NUMA_NO_NODE

2018-11-26 Thread Anshuman Khandual
At present there are multiple places where invalid node number is encoded as -1. Even though implicitly understood it is always better to have macros in there. Replace these open encodings for an invalid node number with the global macro NUMA_NO_NODE. This helps remove NUMA related assumptions like

Re: [PATCH V2] mm: Replace all open encodings for NUMA_NO_NODE

2018-11-26 Thread David Hildenbrand
On 26.11.18 13:26, Anshuman Khandual wrote: > At present there are multiple places where invalid node number is encoded > as -1. Even though implicitly understood it is always better to have macros > in there. Replace these open encodings for an invalid node number with the > global macro NUMA_NO_N

Re: [PATCH v3] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Stanimir Varbanov
Hi Malathi, Thanks for the patch! On 11/26/18 12:12 PM, Malathi Gottam wrote: > Accept the buffer size requested by client and compare it > against driver calculated size and set the maximum to > bitstream plane. > > Signed-off-by: Malathi Gottam > --- > drivers/media/platform/qcom/venus/venc.

Re: DVB-S PCI card regression on 4.19 / 4.20

2018-11-26 Thread Takashi Iwai
On Fri, 23 Nov 2018 18:26:25 +0100, Mauro Carvalho Chehab wrote: > > Takashi, > > Could you please produce a Kernel for Stakanov to test > with the following patches: > > https://patchwork.linuxtv.org/patch/53044/ > https://patchwork.linuxtv.org/patch/53045/ > https://patchwork.linuxtv.org/patch

Re: [PATCH v3] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Hans Verkuil
On 11/26/2018 11:12 AM, Malathi Gottam wrote: > Accept the buffer size requested by client and compare it > against driver calculated size and set the maximum to > bitstream plane. > > Signed-off-by: Malathi Gottam Sorry, this isn't allowed. It is the driver that sets the sizeimage value, never

Re: [PATCH V2] mm: Replace all open encodings for NUMA_NO_NODE

2018-11-26 Thread Anshuman Khandual
On 11/26/2018 06:18 PM, David Hildenbrand wrote: > On 26.11.18 13:26, Anshuman Khandual wrote: >> At present there are multiple places where invalid node number is encoded >> as -1. Even though implicitly understood it is always better to have macros >> in there. Replace these open encodings for

Re: [PATCH v3] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Stanimir Varbanov
Hi Hans, On 11/26/18 3:37 PM, Hans Verkuil wrote: > On 11/26/2018 11:12 AM, Malathi Gottam wrote: >> Accept the buffer size requested by client and compare it >> against driver calculated size and set the maximum to >> bitstream plane. >> >> Signed-off-by: Malathi Gottam > > Sorry, this isn't al

Re: [PATCH v3] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Hans Verkuil
On 11/26/2018 03:57 PM, Stanimir Varbanov wrote: > Hi Hans, > > On 11/26/18 3:37 PM, Hans Verkuil wrote: >> On 11/26/2018 11:12 AM, Malathi Gottam wrote: >>> Accept the buffer size requested by client and compare it >>> against driver calculated size and set the maximum to >>> bitstream plane. >>>

Re: [PATCH v3] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Tomasz Figa
Hi Hans, On Tue, Nov 27, 2018 at 12:24 AM Hans Verkuil wrote: > > On 11/26/2018 03:57 PM, Stanimir Varbanov wrote: > > Hi Hans, > > > > On 11/26/18 3:37 PM, Hans Verkuil wrote: > >> On 11/26/2018 11:12 AM, Malathi Gottam wrote: > >>> Accept the buffer size requested by client and compare it > >>>

Re: [PATCH v3] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Hans Verkuil
On 11/26/2018 04:44 PM, Tomasz Figa wrote: > Hi Hans, > > On Tue, Nov 27, 2018 at 12:24 AM Hans Verkuil wrote: >> >> On 11/26/2018 03:57 PM, Stanimir Varbanov wrote: >>> Hi Hans, >>> >>> On 11/26/18 3:37 PM, Hans Verkuil wrote: On 11/26/2018 11:12 AM, Malathi Gottam wrote: > Accept the b

Re: [PATCH v3] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Tomasz Figa
On Tue, Nov 27, 2018 at 1:00 AM Hans Verkuil wrote: > > On 11/26/2018 04:44 PM, Tomasz Figa wrote: > > Hi Hans, > > > > On Tue, Nov 27, 2018 at 12:24 AM Hans Verkuil wrote: > >> > >> On 11/26/2018 03:57 PM, Stanimir Varbanov wrote: > >>> Hi Hans, > >>> > >>> On 11/26/18 3:37 PM, Hans Verkuil wrot

[PATCH] media: imx274: fix stack corruption in imx274_read_reg

2018-11-26 Thread Luca Ceresoli
imx274_read_reg() takes a u8 pointer ("reg") and casts it to pass it to regmap_read(), which takes an unsigned int pointer. This results in a corrupted stack and random crashes. Fixes: 0985dd306f72 ("media: imx274: V4l2 driver for Sony imx274 CMOS sensor") Cc: sta...@vger.kernel.org # 4.15.x Signe

Re: [PATCH v3] media: venus: amend buffer size for bitstream plane

2018-11-26 Thread Hans Verkuil
On 11/26/2018 05:07 PM, Tomasz Figa wrote: > On Tue, Nov 27, 2018 at 1:00 AM Hans Verkuil wrote: >> >> On 11/26/2018 04:44 PM, Tomasz Figa wrote: >>> Hi Hans, >>> >>> On Tue, Nov 27, 2018 at 12:24 AM Hans Verkuil wrote: On 11/26/2018 03:57 PM, Stanimir Varbanov wrote: > Hi Hans, >>>

[PATCH] media: Kconfig: Add configuration entry for MEDIA_MEM2MEM_SUPPORT

2018-11-26 Thread Priit Laes
Currently there is no easy way to enable mem2mem based video processor drivers (cedrus for example). Simplify this by adding separate category to media support. Signed-off-by: Priit Laes --- drivers/media/Kconfig | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/d

Re: [Intel-wired-lan] [PATCH V2] mm: Replace all open encodings for NUMA_NO_NODE

2018-11-26 Thread Jeff Kirsher
On Mon, 2018-11-26 at 17:56 +0530, Anshuman Khandual wrote: > At present there are multiple places where invalid node number is > encoded > as -1. Even though implicitly understood it is always better to have > macros > in there. Replace these open encodings for an invalid node number > with the >

Re: [Intel-wired-lan] [PATCH V2] mm: Replace all open encodings for NUMA_NO_NODE

2018-11-26 Thread Jens Axboe
On 11/26/18 10:56 AM, Jeff Kirsher wrote: > On Mon, 2018-11-26 at 17:56 +0530, Anshuman Khandual wrote: >> At present there are multiple places where invalid node number is >> encoded >> as -1. Even though implicitly understood it is always better to have >> macros >> in there. Replace these open e

[PATCH v2 0/2] media: Startech usb2hdcapm hdmi2usb framegrabber support

2018-11-26 Thread Michael Grzeschik
This series adds support for the Startech usb2hdcapm framegrabber. The code is based on the external kernel module code from Steven Toth's github page: https://github.com/stoth68000/hdcapm/ We applied checkpatch.pl --strict and cleaned up the 80 character length, whitespace issues and replaced si

[PATCH v2 1/2] media: mst3367: add support for mstar mst3367 HDMI RX

2018-11-26 Thread Michael Grzeschik
From: Steven Toth This patch is based on the work of Steven Toth. He reverse engineered the driver by tracing the windows driver. https://github.com/stoth68000/hdcapm/ Signed-off-by: Steven Toth Signed-off-by: Michael Grzeschik --- drivers/media/i2c/Kconfig | 10 + drivers/media/i2c/Make

[PATCH v2 2/2] media: hdcapm: add support for usb2hdcapm hdmi2usb framegrabber from startech

2018-11-26 Thread Michael Grzeschik
From: Steven Toth This patch is based on the work of Steven Toth. He reverse engineered the driver by tracing the windows driver. https://github.com/stoth68000/hdcapm/ Signed-off-by: Steven Toth Signed-off-by: Michael Grzeschik --- drivers/media/usb/Kconfig| 1 + driver

Re: [PATCH 5/5] DO NOT MERGE: ARM: dts: bananapi: Add Camera support

2018-11-26 Thread Jagan Teki
On Tue, Nov 13, 2018 at 1:54 PM Maxime Ripard wrote: > > Signed-off-by: Maxime Ripard > --- > arch/arm/boot/dts/sun7i-a20-bananapi.dts | 98 +- > 1 file changed, 98 insertions(+) > > diff --git a/arch/arm/boot/dts/sun7i-a20-bananapi.dts > b/arch/arm/boot/dts/sun7i-a20-ba

BUG: unable to handle kernel paging request in tpg_fill_plane_buffer

2018-11-26 Thread syzbot
Hello, syzbot found the following crash on: HEAD commit:6f8b52ba442c Merge tag 'hwmon-for-v4.20-rc5' of git://git... git tree: upstream console output: https://syzkaller.appspot.com/x/log.txt?x=15fd354d40 kernel config: https://syzkaller.appspot.com/x/.config?x=c94f9f0c0363db4b da

Re: [PATCH] arm64: dts: sdm845: add video nodes

2018-11-26 Thread Alexandre Courbot
On Tue, Nov 20, 2018 at 7:08 PM Malathi Gottam wrote: > > This adds video nodes to sdm845 based on the examples > in the bindings. > > Signed-off-by: Malathi Gottam > --- > arch/arm64/boot/dts/qcom/sdm845.dtsi | 34 ++ > 1 file changed, 34 insertions(+) > > diff -

Re: [PATCH v2 0/2] media: Startech usb2hdcapm hdmi2usb framegrabber support

2018-11-26 Thread Hans Verkuil
Hi Michael, Apologies for completely missing your v1 post for this driver. It was posted just before the ELCE and it looks like it just fell through the cracks. Anyway, I did a quick scan and found a few high-level things that need to be addressed before I will start reviewing: 1) Please add the

Re: [PATCH V2] mm: Replace all open encodings for NUMA_NO_NODE

2018-11-26 Thread Michael Ellerman
Anshuman Khandual writes: > At present there are multiple places where invalid node number is encoded > as -1. Even though implicitly understood it is always better to have macros > in there. Replace these open encodings for an invalid node number with the > global macro NUMA_NO_NODE. This helps r