projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aead342
)
bcachefs: bios must be 512 byte algined
author
Kent Overstreet
<kent.overstreet@linux.dev>
Tue, 16 Jan 2024 16:38:04 +0000
(11:38 -0500)
committer
Kent Overstreet
<kent.overstreet@linux.dev>
Sun, 21 Jan 2024 18:27:10 +0000
(13:27 -0500)
Fixes: 023f9ac9f70f bcachefs: Delete dio read alignment check
Reported-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
fs/bcachefs/fs-io-direct.c
patch
|
blob
|
history
diff --git
a/fs/bcachefs/fs-io-direct.c
b/fs/bcachefs/fs-io-direct.c
index fdd57c5785c9cebf609959fb753ee30e55e85b92..e3b219e19e1008ccfe1ff61e966115795f9c1831 100644
(file)
--- a/
fs/bcachefs/fs-io-direct.c
+++ b/
fs/bcachefs/fs-io-direct.c
@@
-77,6
+77,10
@@
static int bch2_direct_IO_read(struct kiocb *req, struct iov_iter *iter)
bch2_inode_opts_get(&opts, c, &inode->ei_inode);
+ /* bios must be 512 byte aligned: */
+ if ((offset|iter->count) & (SECTOR_SIZE - 1))
+ return -EINVAL;
+
ret = min_t(loff_t, iter->count,
max_t(loff_t, 0, i_size_read(&inode->v) - offset));