[PATCH v3 4/7] staging: speakup: replace spk_strlwr() with strlcpytolower()

2016-07-08 Thread Markus Mayer
After introducing generic strltolower() and strtolower(), spk_strlwr() is no longer needed. Signed-off-by: Markus Mayer --- Samuel, I left off your ACK, since the implementation of my function changed in v2 and again in v3. This patch has been updated to match the new

[PATCH v3 1/7] lib: string: add functions to case-convert strings

2016-07-08 Thread Markus Mayer
Add a collection of generic functions to convert strings to lowercase or uppercase. Changing the case of a string (with or without copying it first) seems to be a recurring requirement in the kernel that is currently being solved by several duplicated implementations doing the same thing. This

[PATCH v3 0/7] lib: string: add functions to case-convert strings

2016-07-08 Thread Markus Mayer
This series introduces a family of generic string case conversion functions. This kind of functionality is needed in several places in the kernel. Right now, everybody seems to be implementing their own copy of this functionality. Based on the discussion of the previous version of this series[1]

Re: [PATCH] Staging: gdm724x: gdm_tty: Fixed a checkpatch check issue.

2016-07-08 Thread Luis de Bethencourt
On 08/07/16 20:32, Samuele Baisi wrote: > > > Il giorno ven 8 lug 2016 alle 20:17, Luis de Bethencourt > ha scritto: >> On 05/07/16 12:33, Samuele Baisi wrote: >>> Removed a blankline after an opening bracket. >>> >>> Signed-off-by: Samuele Baisi

Re: [PATCH] Staging: gdm724x: gdm_tty: Fixed a checkpatch check issue.

2016-07-08 Thread Samuele Baisi
Il giorno ven 8 lug 2016 alle 20:17, Luis de Bethencourt ha scritto: On 05/07/16 12:33, Samuele Baisi wrote: Removed a blankline after an opening bracket. Signed-off-by: Samuele Baisi --- drivers/staging/gdm724x/gdm_tty.c | 1 - 1 file

Re: [PATCH] Staging: rtl8712: Fixed brace and comment style issue

2016-07-08 Thread Luis de Bethencourt
On 03/07/16 04:54, Anuradha Weeraman wrote: > Fixed issues with coding style. > > Signed-off-by: Anuradha Weeraman > --- > drivers/staging/rtl8712/xmit_linux.c | 15 --- > 1 file changed, 8 insertions(+), 7 deletions(-) > > diff --git

Re: [PATCH] Staging: gdm724x: gdm_tty: Fixed a checkpatch check issue.

2016-07-08 Thread Luis de Bethencourt
On 05/07/16 12:33, Samuele Baisi wrote: > Removed a blankline after an opening bracket. > > Signed-off-by: Samuele Baisi > --- > drivers/staging/gdm724x/gdm_tty.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/staging/gdm724x/gdm_tty.c >

Re: [PATCH v2 1/7] lib: string: add functions to case-convert strings

2016-07-08 Thread Markus Mayer
On 7 July 2016 at 17:19, Rasmus Villemoes wrote: > On Tue, Jul 05 2016, Markus Mayer wrote: > >> +/** >> + * strncpytoupper - Copy a length-limited string and convert to uppercase. >> + * @dst: The buffer to store the result. >> + * @src: The string

Re: [PATCH 01/15 RESEND] staging: dgnc: remove redundant NULL checks in

2016-07-08 Thread Luis de Bethencourt
On 04/07/16 12:36, Daeseok Youn wrote: > The dgnc_block_til_ready() is only used in dgnc_tty_open(). > The unit data(struct un_t) was stored into tty->driver_data in > dgnc_tty_open(). > And also tty and un were tested about NULL so these variables doesn't > need to check for NULL in

Re: [PATCH v15 net-next 1/1] hv_sock: introduce Hyper-V Sockets

2016-07-08 Thread Vitaly Kuznetsov
Dexuan Cui writes: > Hyper-V Sockets (hv_sock) supplies a byte-stream based communication > mechanism between the host and the guest. It's somewhat like TCP over > VMBus, but the transportation layer (VMBus) is much simpler than IP. > > With Hyper-V Sockets, applications

Re: [v3,01/10] rtlwifi: Create common routine to get hardware info

2016-07-08 Thread Kalle Valo
Larry Finger wrote: > All of the rtlwifi family of drivers have a similar routine that acquires > the hardware info from efuse and initializes a number of variables in the > driver's private area. A common routine is created for all drivers to use. > > Reported-by:

Re: [PATCH v15 net-next 1/1] hv_sock: introduce Hyper-V Sockets

2016-07-08 Thread Cathy Avery
It's too bad about having to allocate the send/receive rings on a per socket basis. Hopefully this will change in the future. I have built kernel 4.7.0-rc6 with this patch and did a quick test on the driver using rhel7 over hyperv Windows Server 2016 TP5. These were basic send and receive

Partnership INVESTMENT

2016-07-08 Thread GLOBAL PARTNERSHIP & INVESTMENTS
The Chief Executive Officer, Managing Director Chief Financial Director, A CALL FOR BUSINESS & PROJECT FACILITATORS WE ARE A BUSINESS DEVELOPMENT INVESTOR working on expanding its portfolio globally in Financing and Developing Projects. We are active Investors and Financiers in sectors and

Partnership INVESTMENT

2016-07-08 Thread GLOBAL PARTNERSHIP & INVESTMENTS
The Chief Executive Officer, Managing Director Chief Financial Director, A CALL FOR BUSINESS & PROJECT FACILITATORS WE ARE A BUSINESS DEVELOPMENT INVESTOR working on expanding its portfolio globally in Financing and Developing Projects. We are active Investors and Financiers in sectors and

RE: [PATCH v15 net-next 1/1] hv_sock: introduce Hyper-V Sockets

2016-07-08 Thread Dexuan Cui
> From: Dexuan Cui > Sent: Friday, July 8, 2016 15:47 > > You can also get the patch here (2764221d): > https://github.com/dcui/linux/commits/decui/hv_sock/net-next/20160708_v15 > > In v14: > fix some coding style issues pointed out by David. > > In v15: > Just some stylistic changes addressing

[PATCH v15 net-next 1/1] hv_sock: introduce Hyper-V Sockets

2016-07-08 Thread Dexuan Cui
Hyper-V Sockets (hv_sock) supplies a byte-stream based communication mechanism between the host and the guest. It's somewhat like TCP over VMBus, but the transportation layer (VMBus) is much simpler than IP. With Hyper-V Sockets, applications between the host and the guest can talk to each other

[PATCH v15 net-next 0/1] introduce Hyper-V VM Sockets(hv_sock)

2016-07-08 Thread Dexuan Cui
Hyper-V Sockets (hv_sock) supplies a byte-stream based communication mechanism between the host and the guest. It's somewhat like TCP over VMBus, but the transportation layer (VMBus) is much simpler than IP. With Hyper-V Sockets, applications between the host and the guest can talk to each other

RE: [PATCH v14 net-next 1/1] hv_sock: introduce Hyper-V Sockets

2016-07-08 Thread Dexuan Cui
> From: Olaf Hering [mailto:o...@aepfle.de] > Sent: Friday, July 8, 2016 0:02 > On Thu, Jun 30, Dexuan Cui wrote: > > > +/* The MTU is 16KB per the host side's design. */ > > +struct hvsock_recv_buf { > > + unsigned int data_len; > > + unsigned int data_offset; > > + > > + struct