Re: [PATCH v4 0/9] staging: iio: ad7780: move out of staging

2019-03-01 Thread Ardelean, Alexandru
On Thu, 2019-02-28 at 11:23 -0300, Renato Lui Geh wrote: > The patch-series is a bit big. I guess that the intent is to move this out-of-staging, but various patches are holding this in it's place. For patch series above a certain size, you could get many re-spins [V2,3,4... so on]. You could se

[PATCH] Coding style fixes on vme_user.c trivial

2019-03-01 Thread Oryan Perlmutter
drivers/staging/devices: Coding style fixes found at file vme_user.c. Signed-off-by: Oryan Perlmutter --- drivers/staging/vme/devices/vme_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/vme/devices/vme_user.c b/drivers/staging/vme/devices/vme_user.c in

[PATCH] media: a few more typos at staging, pci, platform, radio and usb

2019-03-01 Thread Mauro Carvalho Chehab
Those typos were left over from codespell check, on my first pass or belong to code added after the time I ran it. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/pci/cx18/cx18-dvb.c | 2 +- drivers/media/pci/saa7164/saa7164-dvb.c| 2 +- drivers/media/platform/ti-vpe/vpdma.c

Re: [PATCH] Coding style fixes on vme_user.c trivial

2019-03-01 Thread Greg KH
On Fri, Mar 01, 2019 at 04:27:25PM +0200, Oryan Perlmutter wrote: > drivers/staging/devices: Coding style fixes found at file vme_user.c. Your subject line, and this changelog text, need a lot of work. Please look at the other patches that have been accepted for this driver as examples of how to

From Mrs. Elia Rodrigues,

2019-03-01 Thread Mrs. Elia Rodrigues
Hello I am Mrs. Elia Rodrigues I have been diagnosed with cancer. It has defied all forms of medical treatment, and right now I have only about a few months to live, according to medical experts. I have not particularly lived my life so well, as I never really cared for anyone (not even mys

Re: [PATCH] media: a few more typos at staging, pci, platform, radio and usb

2019-03-01 Thread Rui Miguel Silva
Hi Mauro, On Fri 01 Mar 2019 at 15:03, Mauro Carvalho Chehab wrote: Those typos were left over from codespell check, on my first pass or belong to code added after the time I ran it. Signed-off-by: Mauro Carvalho Chehab For the imx7 part: Acked-by: Rui Miguel Silva Thanks. --- Cheers,

[PATCH] binder: fix race between munmap() and direct reclaim

2019-03-01 Thread Todd Kjos
An munmap() on a binder device causes binder_vma_close() to be called which clears the alloc->vma pointer. If direct reclaim causes binder_alloc_free_page() to be called, there is a race where alloc->vma is read into a local vma pointer and then used later after the mm->mmap_sem is acquired. This

[PATCH] media: imx: vdic: Fix wrong CSI group ID

2019-03-01 Thread Steve Longerbeam
The i.MX7 capture support forgot to change the group ID for the CSI to the IPU CSI in VDIC sub-device, it was left at the i.MX7 CSI group ID. Fixes: 67673ed55084 ("media: staging/imx: rearrange group id to take in account IPU") Signed-off-by: Steve Longerbeam --- drivers/staging/media/imx/imx-

Re: [PATCH net-next] switchdev: Remove unused transaction item queue

2019-03-01 Thread David Miller
From: Florian Fainelli Date: Wed, 27 Feb 2019 16:29:16 -0800 > There are no more in tree users of the > switchdev_trans_item_{dequeue,enqueue} or switchdev_trans_item structure > in the kernel since commit 00fc0c51e35b ("rocker: Change world_ops API > and implementation to be switchdev independan

Re: [PATCH] binder: fix race between munmap() and direct reclaim

2019-03-01 Thread Greg KH
On Fri, Mar 01, 2019 at 03:06:06PM -0800, Todd Kjos wrote: > An munmap() on a binder device causes binder_vma_close() to be called > which clears the alloc->vma pointer. > > If direct reclaim causes binder_alloc_free_page() to be called, there > is a race where alloc->vma is read into a local vma