All of lore.kernel.org
 help / color / mirror / Atom feed
* [merged] fs-affs-bugfix-write-files-greater-than-page-size-on-ofs.patch removed from -mm tree
@ 2017-05-01 19:21 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2017-05-01 19:21 UTC (permalink / raw)
  To: fabf, mm-commits, viro


The patch titled
     Subject: fs/affs: bugfix: write files greater than page size on OFS
has been removed from the -mm tree.  Its filename was
     fs-affs-bugfix-write-files-greater-than-page-size-on-ofs.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
From: Fabian Frederick <fabf@skynet.be>
Subject: fs/affs: bugfix: write files greater than page size on OFS

Previous AFFS patch fixed OFS write operations but unveiled another bug:
files greater than 4KB are being created with a wrong size resulting in
errors like the following:

dd if=/dev/zero of=file bs=4097 count=1
cp file /mnt/affs/
cp: error writing '/mnt/affs/file': Bad address

Link: http://lkml.kernel.org/r/20170424201310.1796-1-fabf@skynet.be
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 fs/affs/file.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN fs/affs/file.c~fs-affs-bugfix-write-files-greater-than-page-size-on-ofs fs/affs/file.c
--- a/fs/affs/file.c~fs-affs-bugfix-write-files-greater-than-page-size-on-ofs
+++ a/fs/affs/file.c
@@ -679,7 +679,7 @@ static int affs_write_end_ofs(struct fil
 	int written;
 
 	from = pos & (PAGE_SIZE - 1);
-	to = pos + len;
+	to = from + len;
 	/*
 	 * XXX: not sure if this can handle short copies (len < copied), but
 	 * we don't have to, because the page should always be uptodate here,
_

Patches currently in -mm which might be from fabf@skynet.be are



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-05-01 19:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-01 19:21 [merged] fs-affs-bugfix-write-files-greater-than-page-size-on-ofs.patch removed from -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.