Re: [PATCH] ide: don't call memcpy with the same source and destination

2017-05-08 Thread David Miller
From: Mikulas Patocka Date: Fri, 14 Apr 2017 14:35:33 -0400 (EDT) > The parisc architecture recently reimplemented the memcpy function and > their reimplementation crashed when source and destination overlapped. > > The crash happened in the function ide_complete_cmd where memcpy is called > wit

Re: [PATCH] ide: don't call memcpy with the same source and destination

2017-04-18 Thread Bartlomiej Zolnierkiewicz
On Friday, April 14, 2017 02:35:33 PM Mikulas Patocka wrote: > The parisc architecture recently reimplemented the memcpy function and > their reimplementation crashed when source and destination overlapped. > > The crash happened in the function ide_complete_cmd where memcpy is called > with the

[PATCH] ide: don't call memcpy with the same source and destination

2017-04-14 Thread Mikulas Patocka
The parisc architecture recently reimplemented the memcpy function and their reimplementation crashed when source and destination overlapped. The crash happened in the function ide_complete_cmd where memcpy is called with the same source and destination pointer. According to the C specification, m