Skip to content
Commit 49854d3c authored by Jan Kara's avatar Jan Kara
Browse files

udf: Fix lost writes in udf_adinicb_writepage()

The patch converting udf_adinicb_writepage() to avoid manually kmapping
the page used memcpy_to_page() however that copies in the wrong
direction (effectively overwriting file data with the old contents).
What we should be using is memcpy_from_page() to copy data from the page
into the inode and then mark inode dirty to store the data.

Fixes: 5cfc4532

 ("udf: Convert udf_adinicb_writepage() to memcpy_to_page()")
Signed-off-by: default avatarJan Kara <jack@suse.cz>
parent fe15c26e
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment