The patch titled nftl: write support is broken has been removed from the -mm tree. Its filename was nftl-write-support-is-broken.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: nftl: write support is broken From: Dimitri Gorokhovik <dimitri.gorokhovik@xxxxxxx> Write support is broken in NFTL. Fix it. Signed-off-by: Dimitri Gorokhovik <dimitri.gorokhovik@xxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Cc: Tim Gardner <tim.gardner@xxxxxxxxxxxxx> Cc: Scott James Remnant <scott@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mtd/nftlcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/mtd/nftlcore.c~nftl-write-support-is-broken drivers/mtd/nftlcore.c --- a/drivers/mtd/nftlcore.c~nftl-write-support-is-broken +++ a/drivers/mtd/nftlcore.c @@ -181,7 +181,7 @@ static int nftl_write(struct mtd_info *m int res; ops.mode = MTD_OOB_PLACE; - ops.ooboffs = offs; + ops.ooboffs = offs & (mtd->writesize - 1); ops.ooblen = mtd->oobsize; ops.oobbuf = oob; ops.datbuf = buf; _ Patches currently in -mm which might be from dimitri.gorokhovik@xxxxxxx are linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html