On Wed, 17 Aug 2011 10:19:40 +0200, Barry Song <Baohua.Song@xxxxxxx> wrote:
@@ -835,7 +835,8 @@ static int do_read(struct fsg_common *common) } else if (nread < amount) { LDBG(curlun, "partial file read: %d/%u\n", (int)nread, amount); - nread -= (nread & 511); /* Round down to a block */ + nread -= (nread & (curlun->blksize - 1)); + /* Round down to a block */
How about: “nread = round_down(nread, curlun->blksize)”? This also applies to
other places in f_mass_storage.c and file_storage.c files.
} file_offset += nread; amount_left -= nread;
-- Best regards, _ _ .o. | Liege of Serenely Enlightened Majesty of o' \,=./ `o ..o | Computer Science, Michal "mina86" Nazarewicz (o o) ooo +-----<email/xmpp: mnazarewicz@xxxxxxxxxx>-----ooO--(_)--Ooo-- -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html