Shipping documents W2019004AI

2019-03-18 Thread Nolan Transportation Group
Hi , Attached please find the copy of the shipping documents from L- Tech On Board 3/11/2019 for your reference. If you have any questions, please do not hesitate to let us know. Thank you. Regards, Lighting SPOT26 LLC Bright up your Life SHIPPING DOCUMENTS.xlsx Description: Binary data

[PATCH] staging: erofs: fix parenthesis alignment

2019-03-18 Thread Julian Merida
Fix all checkpatch issues: "CHECK: Alignment should match open parenthesis" Signed-off-by: Julian Merida Reviewed-by: Gao Xiang --- drivers/staging/erofs/inode.c | 13 +++ drivers/staging/erofs/namei.c | 3 +- drivers/staging/erofs/super.c | 25 --

Re: [RFC] simple_lmk: Introduce Simple Low Memory Killer for Android

2019-03-18 Thread Joel Fernandes
On Mon, Mar 18, 2019 at 01:29:51AM +0100, Christian Brauner wrote: > On Sun, Mar 17, 2019 at 08:40:19AM -0700, Daniel Colascione wrote: > > On Sun, Mar 17, 2019 at 4:42 AM Christian Brauner > > wrote: > > > > > > On Sat, Mar 16, 2019 at 09:53:06PM -0400, Joel Fernandes wrote: > > > > On Sat, Mar

Re: v5.1-rc1 binder_alloc_do_buffer_copy() BUG_ON triggered by selinux-testsuite

2019-03-18 Thread Paul Moore
On Mon, Mar 18, 2019 at 6:51 PM Todd Kjos wrote: > On Mon, Mar 18, 2019 at 2:31 PM Paul Moore wrote: > > Hello all. > > > > When running the selinux-testsuite (link below) against v5.1-rc1 I hit > > the BUG_ON() at the top of binder_alloc_do_buffer_copy() (trace > > below). I'm hoping this is a

[PATCH] staging: emxx_udc: fix various function invocations indentation issues

2019-03-18 Thread Emiliano Ingrassia
Fix various warnings and checks issued by checkpatch.pl. Signed-off-by: Emiliano Ingrassia --- Task 10 of the Eudyptula challenge. drivers/staging/emxx_udc/emxx_udc.c | 122 ++-- 1 file changed, 63 insertions(+), 59 deletions(-) diff --git

v5.1-rc1 binder_alloc_do_buffer_copy() BUG_ON triggered by selinux-testsuite

2019-03-18 Thread Paul Moore
Hello all. When running the selinux-testsuite (link below) against v5.1-rc1 I hit the BUG_ON() at the top of binder_alloc_do_buffer_copy() (trace below). I'm hoping this is a known issue with a fix already in the works? * https://github.com/SELinuxProject/selinux-testsuite [ 823.232432]

Re: [PATCH] staging: ks7010: remove redundant auth_type check

2019-03-18 Thread Jeremy Sowden
On 2019-03-18, at 10:57:49 +, Colin King wrote: > The range check on auth_type is redundant as there is a prior > check on the auth_type values and the only way the block is entered > is if auth_type is one of TYPE_PMK1, TYPE_GMK1 and TYPE_GMK1. "... and TYPE_GMK2." > Hence the auth_type

Hello

2019-03-18 Thread mrs ann mark
I am Mrs Ann Mark, a born again christian and a widow and i want to make a donation of $ 5.5 Million US Dollars to help orphans and widows and charitable home in your country, and i assumed that you will be able to receive this fund and use it to my wished to the needs in your country and i am

Re: [PATCH v3] staging: erofs: Add whitespace after declaration

2019-03-18 Thread Bharath Vedartham
On Mon, Mar 18, 2019 at 11:40:35PM +0800, Gao Xiang wrote: > > > On 2019/3/18 23:38, Greg KH wrote: > > On Mon, Mar 18, 2019 at 09:02:24PM +0530, Bharath Vedartham wrote: > >> Add whitespace after declaration. Fixed the checkpatch.pl warning. > >> > >> --- > > > > No signed-off-by? > > > >>

Re: [PATCH v3] staging: erofs: Add whitespace after declaration

2019-03-18 Thread Gao Xiang
On 2019/3/18 23:38, Greg KH wrote: > On Mon, Mar 18, 2019 at 09:02:24PM +0530, Bharath Vedartham wrote: >> Add whitespace after declaration. Fixed the checkpatch.pl warning. >> >> --- > > No signed-off-by? > >> changes since v2 >> - mutt gave me a lot of problems. Hence 3 patches for a

Re: [PATCH v3] staging: erofs: Add whitespace after declaration

2019-03-18 Thread Greg KH
On Mon, Mar 18, 2019 at 09:02:24PM +0530, Bharath Vedartham wrote: > Add whitespace after declaration. Fixed the checkpatch.pl warning. > > --- No signed-off-by? > changes since v2 > - mutt gave me a lot of problems. Hence 3 patches for a really > small problem. > - Fixed

[PATCH v3] staging: erofs: Add whitespace after declaration

2019-03-18 Thread Bharath Vedartham
Add whitespace after declaration. Fixed the checkpatch.pl warning. --- changes since v2 - mutt gave me a lot of problems. Hence 3 patches for a really small problem. - Fixed the extra missing line. Signed-off-by: Bharath Vedartham --- drivers/staging/erofs/inode.c | 2

Re: [PATCH net] staging: rtl8188eu: use is_zero_ether_addr() instead of memcmp()

2019-03-18 Thread maowenan
On 2019/3/17 19:26, Greg KH wrote: > On Sat, Mar 09, 2019 at 11:26:00AM +0800, Mao Wenan wrote: >> Using is_zero_ether_addr() instead of directly use >> memcmp() to determine if the ethernet address is all >> zeros. >> >> Signed-off-by: Mao Wenan >> --- >>

static analysis bug report: staging: rtl8192u: use of uninitialized array

2019-03-18 Thread Colin Ian King
Hi, static analysis with cppcheck has detected use of an uninitialized array tmp_ssid in drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c in function ieee80211_softmac_new_net() Array tmp_ssid is only initialized when ssidbroad is non-null, however it is being copied and the copy of this

[PATCHv4] staging: rtl8723bs: do not use __constant_cpu_to_le16

2019-03-18 Thread Sergey Senozhatsky
cpu_to_le16() is capable enough to detect __builtin_constant_p() and to use an appropriate compile time ___constant_swahbXX() function. So we can use cpu_to_le16() instead of __constant_cpu_to_le16(). Signed-off-by: Sergey Senozhatsky --- v1-v4: tweaked the commit message (dropped 'tirival')

static analysis bug report: staging r8712u memcpy of uninitialized variable

2019-03-18 Thread Colin Ian King
Hi, Static analysis with cppcheck found a couple of interesting issues with memcpy'ing of an uninitialized variable. Two occurrences of the same issue are found in drivers/staging/rtl8712/rtl8712_cmd.c in functions read_bbreg_hdl and read_rfreg_hdl. For example: static u8 read_bbreg_hdl(struct

[PATCH] staging: ks7010: remove redundant auth_type check

2019-03-18 Thread Colin King
From: Colin Ian King The range check on auth_type is redundant as there is a prior check on the auth_type values and the only way the block is entered is if auth_type is one of TYPE_PMK1, TYPE_GMK1 and TYPE_GMK1. Hence the auth_type check can be removed. Detected by static analysis with

[PATCH] staging: rtl8188eu: remove unused defines from wifi.h

2019-03-18 Thread Michael Straube
All defined P2P* in wifi.h are unused in the driver code, so remove them. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/include/wifi.h | 110 --- 1 file changed, 110 deletions(-) diff --git a/drivers/staging/rtl8188eu/include/wifi.h

Hello

2019-03-18 Thread Ms. Reem Al-Hashimi
Hello, My name is Hon. Ms. Reem Al-Hashimi, I am the present Minister of state and Petroleum in UAE. I write to solicit for your partnership in claiming of $47 Million from a Financial Home in Cambodia. The aforementioned fund $47 Million is my share percentage from my Oil/Gas deal with

Re: [PATCH] staging: erofs: fix parenthesis alignment

2019-03-18 Thread Gao Xiang
On 2019/3/18 12:14, Julian Merida wrote: > Fix all checkpatch issues: "CHECK: Alignment should match open parenthesis" > > Signed-off-by: Julian Merida looks good to me personally, you can add: Reviewed-by: Gao Xiang btw, I cc greg and staging mailing list, could you please resend this

Re: [PATCH] staging: comedi: ni_mio_common: Fix divide-by-zero for DIO cmdtest

2019-03-18 Thread Greg Kroah-Hartman
On Wed, Mar 13, 2019 at 06:57:17PM +, Ian Abbott wrote: > On 04/03/2019 14:33, Ian Abbott wrote: > > `ni_cdio_cmdtest()` validates Comedi asynchronous commands for the DIO > > subdevice (subdevice 2) of supported National Instruments M-series > > cards. It is called when handling the