[PATCH] fs: smhfs: Fix return value of truncate()

2015-11-08 Thread Andrey Smirnov
Returning -ENOSYS as a result of truncate() breaks ability to write to semihosting host's filesystem, so change the return value to 0. This shouldn't cause any problems since all of the funcionlaity of truncate() should is already handled by 'open' (via O_TRUNC) and 'write' (will automatically

Re: [PATCH] fs: smhfs: Fix return value of truncate()

2015-11-08 Thread Sascha Hauer
On Sun, Nov 08, 2015 at 04:21:13PM -0800, Andrey Smirnov wrote: > Returning -ENOSYS as a result of truncate() breaks ability to write to > semihosting host's filesystem, so change the return value to 0. This > shouldn't cause any problems since all of the funcionlaity of > truncate() should is