From: Masato Noguchi <redacted>
This patch changes spufs_mfc_write() to return
correct size instead of 0.
Signed-off-by: Masato Noguchi <redacted>
Signed-off-by: Arnd Bergmann <redacted>
---
arch/powerpc/platforms/cell/spufs/file.c | 1 +
1 files changed, 1 insertion(+)
Index: linux-2.6.19-rc6-arnd1/arch/powerpc/platforms/cell/spufs/file.c
===================================================================
--- linux-2.6.19-rc6-arnd1.orig/arch/powerpc/platforms/cell/spufs/file.c
+++ linux-2.6.19-rc6-arnd1/arch/powerpc/platforms/cell/spufs/file.c
@@ -1325,6 +1325,7 @@ static ssize_t spufs_mfc_write(struct fi
goto out;
ctx->tagwait |= 1 << cmd.tag;
+ ret = size;
out:
return ret;
_______________________________________________
cbe-oss-dev mailing list
cbe-oss-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/cbe-oss-dev
--