mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] fs: smhfs: Fix return value of truncate()
@ 2015-11-09  0:21 Andrey Smirnov
  2015-11-09  6:18 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Andrey Smirnov @ 2015-11-09  0:21 UTC (permalink / raw)
  To: barebox; +Cc: 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 grow the file size when writing)
automatically

Unfortunately this was missed in original commit that introduced
semihosting

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
 fs/smhfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/smhfs.c b/fs/smhfs.c
index a0df06c..f1b6d6b 100644
--- a/fs/smhfs.c
+++ b/fs/smhfs.c
@@ -58,7 +58,7 @@ static int smhfs_truncate(struct device_d __always_unused *dev,
 			  FILE __always_unused *f,
 			  ulong __always_unused size)
 {
-	return -ENOSYS;
+	return 0;
 }

 static int smhfs_open(struct device_d __always_unused *dev,
--
2.1.4

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] fs: smhfs: Fix return value of truncate()
  2015-11-09  0:21 [PATCH] fs: smhfs: Fix return value of truncate() Andrey Smirnov
@ 2015-11-09  6:18 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2015-11-09  6:18 UTC (permalink / raw)
  To: Andrey Smirnov; +Cc: barebox

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 already handled by 'open' (via O_TRUNC) and
> 'write' (will automatically grow the file size when writing)
> automatically
> 
> Unfortunately this was missed in original commit that introduced
> semihosting
> 
> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>

Applied, thanks

Sascha

> ---
>  fs/smhfs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/smhfs.c b/fs/smhfs.c
> index a0df06c..f1b6d6b 100644
> --- a/fs/smhfs.c
> +++ b/fs/smhfs.c
> @@ -58,7 +58,7 @@ static int smhfs_truncate(struct device_d __always_unused *dev,
>  			  FILE __always_unused *f,
>  			  ulong __always_unused size)
>  {
> -	return -ENOSYS;
> +	return 0;
>  }
> 
>  static int smhfs_open(struct device_d __always_unused *dev,
> --
> 2.1.4
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-11-09  6:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-09  0:21 [PATCH] fs: smhfs: Fix return value of truncate() Andrey Smirnov
2015-11-09  6:18 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox