On Sat, Jul 26, 2014 at 04:30:47PM +0200, Rickard Strandqvist wrote: > Replacing strncpy with strlcpy to avoid strings that lacks null terminate. > > Signed-off-by: Rickard Strandqvist <rickard_strandqvist@xxxxxxxxxxxxxxxxxx> > --- > drivers/s390/char/sclp_async.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/s390/char/sclp_async.c b/drivers/s390/char/sclp_async.c > index 5f9f929..585de0a 100644 > --- a/drivers/s390/char/sclp_async.c > +++ b/drivers/s390/char/sclp_async.c > @@ -132,12 +132,12 @@ static int sclp_async_send_wait(char *message) > request->command = SCLP_CMDW_WRITE_EVENT_DATA; > request->sccb = sccb; > request->status = SCLP_REQ_FILLED; > - strncpy(sccb->evbuf.data, message, sizeof(sccb->evbuf.data)); > + strlcpy(sccb->evbuf.data, message, sizeof(sccb->evbuf.data)); Do your patches actually fix any bugs? E.g. this line fills a hardware data structure, which must not necessarily be null terminated. Actually you even could have introduced a bug here. So, please state which of your patches actually do fix bugs. -- To unsubscribe from this list: send the line "unsubscribe linux-s390" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html