]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
fs: ext4 write: return file len on success
authorPrzemyslaw Marczak <p.marczak@samsung.com>
Tue, 17 Feb 2015 14:31:52 +0000 (15:31 +0100)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 1 Sep 2015 12:22:30 +0000 (14:22 +0200)
After rework of the file system API, the size of ext4
write was missed. This causes printing unreliable write
size at the end of the file system write operation.

Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Cc: Lukasz Majewski <l.majewski@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Tested-by: Stephen Warren <swarren@nvidia.com>
fs/ext4/ext4_write.c

index f7c52cc4cc1493c81d4a2467a67196a3df6eaf07..fbc4c4b1cc1a48e2f458a0ef30df97b451d40675 100644 (file)
@@ -1000,10 +1000,13 @@ int ext4_write_file(const char *filename, void *buf, loff_t offset,
        }
        ext4fs_close();
 
+       *actwrite = len;
+
        return 0;
 
 fail:
        ext4fs_close();
+       *actwrite = 0;
 
        return -1;
 }