How do i send these funds to your bank account?

2019-12-02 Thread Thomas Dobbs
Hi Dear, This is to notify that your over due fund which has been delayed since years ago is now ready for payment but i don't know how i am to explain this to you because what i was able to retrieve from the bank is only but $459,000.00 which i don't know how i am to send these funds across to yo

Re: [PATCH] staging/octeon: Mark Ethernet driver as BROKEN

2019-12-02 Thread Greg Kroah-Hartman
On Mon, Dec 02, 2019 at 09:36:20AM -0800, Guenter Roeck wrote: > On Mon, Dec 02, 2019 at 05:52:31PM +0100, Greg Kroah-Hartman wrote: > > On Mon, Dec 02, 2019 at 06:18:36AM -0800, Guenter Roeck wrote: > > > The code doesn't compile due to incompatible pointer errors such as > > > > > > drivers/stag

Re: [PATCH] staging/octeon: Mark Ethernet driver as BROKEN

2019-12-02 Thread Guenter Roeck
On Mon, Dec 02, 2019 at 05:52:31PM +0100, Greg Kroah-Hartman wrote: > On Mon, Dec 02, 2019 at 06:18:36AM -0800, Guenter Roeck wrote: > > The code doesn't compile due to incompatible pointer errors such as > > > > drivers/staging/octeon/ethernet-tx.c:649:50: error: > > passing argument 1 of 'cv

Re: [PATCH] staging/octeon: Mark Ethernet driver as BROKEN

2019-12-02 Thread Greg Kroah-Hartman
On Mon, Dec 02, 2019 at 06:18:36AM -0800, Guenter Roeck wrote: > The code doesn't compile due to incompatible pointer errors such as > > drivers/staging/octeon/ethernet-tx.c:649:50: error: > passing argument 1 of 'cvmx_wqe_get_grp' from incompatible pointer type > > This is due to mixing, f

[PATCH] drivers/staging/exfat/exfat_super.c: Clean up ffsCamelCase function names

2019-12-02 Thread Julian Preis
Rename every instance of to in file exfat_super.c. Fix resulting overlong lines. Co-developed-by: Johannes Weidner Signed-off-by: Johannes Weidner Signed-off-by: Julian Preis --- drivers/staging/exfat/exfat_super.c | 99 +++-- 1 file changed, 51 insertions(+), 48 dele

[PATCH] drivers/staging/exfat: Fix spelling mistakes

2019-12-02 Thread Julian Preis
Fix spelling mistakes in exfat_core.c and exfat_super.c. Co-developed-by: Johannes Weidner Signed-off-by: Johannes Weidner Signed-off-by: Julian Preis --- drivers/staging/exfat/exfat_core.c | 6 +++--- drivers/staging/exfat/exfat_super.c | 10 +- 2 files changed, 8 insertions(+), 8 d

[PATCH] staging/octeon: Mark Ethernet driver as BROKEN

2019-12-02 Thread Guenter Roeck
The code doesn't compile due to incompatible pointer errors such as drivers/staging/octeon/ethernet-tx.c:649:50: error: passing argument 1 of 'cvmx_wqe_get_grp' from incompatible pointer type This is due to mixing, for example, cvmx_wqe_t with 'struct cvmx_wqe'. Unfortunately, one can no

[PATCH v2 1/3] staging: gigaset: fix general protection fault on probe

2019-12-02 Thread Johan Hovold
Fix a general protection fault when accessing the endpoint descriptors which could be triggered by a malicious device due to missing sanity checks on the number of endpoints. Reported-by: syzbot+35b1c403a14f5c89e...@syzkaller.appspotmail.com Fixes: 07dc1f9f2f80 ("[PATCH] isdn4linux: Siemens Gigase

[PATCH v2 3/3] staging: gigaset: add endpoint-type sanity check

2019-12-02 Thread Johan Hovold
Add missing endpoint-type sanity checks to probe. This specifically prevents a warning in USB core on URB submission when fuzzing USB descriptors. Signed-off-by: Johan Hovold --- drivers/staging/isdn/gigaset/usb-gigaset.c | 12 1 file changed, 12 insertions(+) diff --git a/drivers

[PATCH v2 2/3] staging: gigaset: fix illegal free on probe errors

2019-12-02 Thread Johan Hovold
The driver failed to initialise its receive-buffer pointer, something which could lead to an illegal free on late probe errors. Fix this by making sure to clear all driver data at allocation. Fixes: 2032e2c2309d ("usb_gigaset: code cleanup") Cc: stable # 2.6.33 Cc: Tilman Schmidt Signed-off

[PATCH v2 0/3] staging: gigaset: fix crashes on probe

2019-12-02 Thread Johan Hovold
Syzbot has been reporting a GPF on probe in the gigaset ISDN driver, which have since been moved to staging. The first patch fixes that issue, and the next one fixes a second crash found during testing. The third patch addresses a benign warning in USB core which syzbot is bound to report once th