WAITING FOR YOUR POSITIVE RESPONSE

2018-12-03 Thread ANNA BLAIR
My Dear Friend, Let me first of all inform you, I got your email address from a mail Directory and decided to mail you for a permission to go ahead. I am Mrs. Anna Blair from United Kingdom, married to Dr. Anthony R. Blair who worked with Texaco Oil Company in Malaysia before he died in a

Re: [PATCH] staging: mt7621-spi: drop the broken full-duplex mode

2018-12-03 Thread Chuanhong Guo
Hi! NeilBrown 于2018年12月4日周二 上午5:55写道: > > On Mon, Dec 03 2018, Chuanhong Guo wrote: > > > Under MORE_BUF_MODE the controller will always shift one bit out of > > spi_opcode if (mosi_bit_cnt > 0) && (cmd_bit_cnt == 0) so the full- > > duplex mode is broken since we can't read anything from MISO

[PATCH] Staging : Add RIFFA PCIe staging driver

2018-12-03 Thread Cheng Fei Phung
This patch adds RIFFA PCIe linux driver for https://github.com/promach/riffa/tree/full_duplex/driver/linux This staging driver is modified from this upstream driver at https://github.com/KastnerRG/riffa/tree/master/driver/linux For further details, please refer to

Re: [PATCH] Staging : Add RIFFA PCIe staging driver

2018-12-03 Thread gre...@linuxfoundation.org
On Tue, Dec 04, 2018 at 02:19:38AM +, Cheng Fei Phung wrote: > This patch adds RIFFA PCIe linux driver for > https://github.com/promach/riffa/tree/full_duplex/driver/linux > > This staging driver is modified from this upstream driver at >

Re: [PATCH RFCv2 1/4] mm/memory_hotplug: Introduce memory block types

2018-12-03 Thread David Hildenbrand
On 01.12.18 02:25, Wei Yang wrote: > On Fri, Nov 30, 2018 at 06:59:19PM +0100, David Hildenbrand wrote: >> Memory onlining should always be handled by user space, because only user >> space knows which use cases it wants to satisfy. E.g. memory might be >> onlined to the MOVABLE zone even if it

Re: [PATCH] [repost] Drivers: hv: vmbus: Offload the handling of channels to two workqueues

2018-12-03 Thread Dan Carpenter
The list is still rejecting @microsoft.com patches... :( I mentioned this last time when you guys were complaining that no one reads your patches and someone sent me a link to marc.info. I want to help but obviously no one has time to look at patches on marc.info... regards, dan carpenter

[PATCH] staging: mt7621-spi: drop support for SPI mode 1/2/3

2018-12-03 Thread Chuanhong Guo
This SPI controller seems to be tested on SPI flash only before mass production and some bits are swizzled under other SPI modes probably due to incorrect wiring inside the silicon. Reject all modes except mode0 because they are broken. Signed-off-by: Chuanhong Guo ---

[PATCH] staging: mt7621-spi: drop the broken full-duplex mode

2018-12-03 Thread Chuanhong Guo
Under MORE_BUF_MODE the controller will always shift one bit out of spi_opcode if (mosi_bit_cnt > 0) && (cmd_bit_cnt == 0) so the full- duplex mode is broken since we can't read anything from MISO during writing spi_opcode. This piece of code also make CS1 unavailable since it forces the broken

Re: [PATCH v9 04/13] media: staging/imx7: add MIPI CSI-2 receiver subdev for i.MX7

2018-12-03 Thread Sakari Ailus
Hi Rui, On Thu, Nov 22, 2018 at 03:18:25PM +, Rui Miguel Silva wrote: > Adds MIPI CSI-2 subdev for i.MX7 to connect with sensors with a MIPI > CSI-2 interface. > > Signed-off-by: Rui Miguel Silva > --- > drivers/staging/media/imx/Makefile |1 + >

Re: [PATCH] staging: iio: ad5933: replaced kfifo by triggered_buffer

2018-12-03 Thread Jonathan Cameron
On Sun, 2 Dec 2018 16:10:45 -0200 Marcelo Schmitt wrote: > On 11/25, Jonathan Cameron wrote: > > On Thu, 22 Nov 2018 10:53:47 -0200 > > Marcelo Schmitt wrote: > > > > > Previously, there was an implicit creation of a kfifo which was replaced > > > by a call to triggered_buffer_setup, which

Re: [PATCH] staging: iio: ad5933: add binding doc for ad5933

2018-12-03 Thread Jonathan Cameron
On Sun, 2 Dec 2018 14:57:12 -0200 Marcelo Schmitt wrote: > Add a devicetree documentation for the ad5933 and ad5934 impedance > converter, network analyzer. > > Co-Developed-by: Gabriel Capella Put this in line below Gabriel's sign off - it makes script parsing of these easier.

Re: [PATCH RFCv2 2/4] mm/memory_hotplug: Replace "bool want_memblock" by "int type"

2018-12-03 Thread David Hildenbrand
On 01.12.18 02:50, Wei Yang wrote: > On Fri, Nov 30, 2018 at 06:59:20PM +0100, David Hildenbrand wrote: >> Let's pass a memory block type instead. Pass "MEMORY_BLOCK_NONE" for device >> memory and for now "MEMORY_BLOCK_UNSPECIFIED" for anything else. No >> functional change. > > I would suggest

Re: [PATCH] binder: remove BINDER_DEBUG_ENTRY()

2018-12-03 Thread Todd Kjos
On Fri, Nov 30, 2018 at 5:26 PM Yangtao Li wrote: > > We already have the DEFINE_SHOW_ATTRIBUTE.There is no need to define > such a macro,so remove BINDER_DEBUG_ENTRY. > > Signed-off-by: Yangtao Li Acked-by: Todd Kjos > --- > drivers/android/binder.c | 48

Re: [PATCH] [repost] Drivers: hv: vmbus: Offload the handling of channels to two workqueues

2018-12-03 Thread Dan Carpenter
On Mon, Dec 03, 2018 at 02:50:19PM +0300, Dan Carpenter wrote: > The list is still rejecting @microsoft.com patches... :( > > I mentioned this last time when you guys were complaining that no one > reads your patches and someone sent me a link to marc.info. I want to > help but obviously no one

Re: [PATCH RFCv2 1/4] mm/memory_hotplug: Introduce memory block types

2018-12-03 Thread Wei Yang
[...] >>> >>> + if (type == MEMORY_BLOCK_NONE) >>> + return -EINVAL; >> >> No one will pass in this value. Can we omit this check for now? > >I could move it to patch nr 2 I guess, but as I introduce >MEMORY_BLOCK_NONE here it made sense to keep it in here. > Yes, this make sense to

[PATCH] binder: fix kerneldoc header for struct binder_buffer

2018-12-03 Thread Todd Kjos
Fix the incomplete kerneldoc header for struct binder_buffer. Change-Id: If3ca10cf6d90f605a0c078e4cdce28f02a475877 Signed-off-by: Todd Kjos --- drivers/android/binder_alloc.h | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git

[PATCH] binder: filter out nodes when showing binder procs

2018-12-03 Thread Todd Kjos
When dumping out binder transactions via a debug node, the output is too verbose if a process has many nodes. Change the output for transaction dumps to only display nodes with pending async transactions. Signed-off-by: Todd Kjos --- drivers/android/binder.c | 3 +++ 1 file changed, 3

[PATCH] binder: fix use-after-free due to fdget() optimization

2018-12-03 Thread Todd Kjos
44d8047f1d87a ("binder: use standard functions to allocate fds") exposed a pre-existing issue in the binder driver. fdget() is used in ksys_ioctl() as a performance optimization. One of the rules associated with fdget() is that ksys_close() must not be called between the fdget() and the fdput().

[PATCH] binder: fix sparse warnings on locking context

2018-12-03 Thread Todd Kjos
Add __acquire()/__release() annnotations to fix warnings in sparse context checking There is one case where the warning was due to a lack of a "default:" case in a switch statement where a lock was being released in each of the cases, so the default case was added. Signed-off-by: Todd Kjos ---

Re: [PATCH] staging: mt7621-spi: drop the broken full-duplex mode

2018-12-03 Thread NeilBrown
On Mon, Dec 03 2018, Chuanhong Guo wrote: > Under MORE_BUF_MODE the controller will always shift one bit out of > spi_opcode if (mosi_bit_cnt > 0) && (cmd_bit_cnt == 0) so the full- > duplex mode is broken since we can't read anything from MISO during > writing spi_opcode. > This piece of code

Re: [PATCH] binder: fix sparse warnings on locking context

2018-12-03 Thread Luc Van Oostenryck
On Mon, Dec 03, 2018 at 12:24:54PM -0800, Todd Kjos wrote: > Add __acquire()/__release() annnotations to fix warnings > in sparse context checking > > There is one case where the warning was due to a lack of > a "default:" case in a switch statement where a lock was > being released in each of