The patch titled
git-block: ps3disk fix
has been removed from the -mm tree. Its filename was
git-block-ps3disk-fix.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: git-block: ps3disk fix
From: Kamalesh Babulal <[EMAIL PROTECTED]>
The build fails with following error
CC drivers/block/ps3disk.o
drivers/block/ps3disk.c: In function âps3disk_scatter_gatherâ:
drivers/block/ps3disk.c:115: error: âbioâ undeclared (first use in this
function)
drivers/block/ps3disk.c:115: error: (Each undeclared identifier is
reported only once
drivers/block/ps3disk.c:115: error: for each function it appears in.)
drivers/block/ps3disk.c:115: error: âjâ undeclared (first use in this
function)
drivers/block/ps3disk.c:116: error: implicit declaration of function
âbio_kunmap_bvecâ
make[2]: *** [drivers/block/ps3disk.o] Error 1
make[1]: *** [drivers/block] Error 2
make: *** [drivers] Error 2
The function bio_kunmap_bvec is missing.I tried checking the git-block.patch
as well as the linux/kernel/git/axboe/linux-2.6-block.git and did not
find this function.
Previously this function was replaced by __bio_kunmap_atomic();
This patch does not solves the implicit "declaration of function
âbio_kunmap_bvecâ"
Signed-off-by: Kamalesh Babulal <[EMAIL PROTECTED]
Cc: Jens Axboe <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/block/ps3disk.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -puN drivers/block/ps3disk.c~git-block-ps3disk-fix drivers/block/ps3disk.c
--- a/drivers/block/ps3disk.c~git-block-ps3disk-fix
+++ a/drivers/block/ps3disk.c
@@ -112,7 +112,7 @@ static void ps3disk_scatter_gather(struc
else
memcpy(buf, dev->bounce_buf+offset, size);
offset += size;
- flush_kernel_dcache_page(bio_iovec_idx(bio, j)->bv_page);
+ flush_kernel_dcache_page(bio_iovec_idx(iter.bio,
iter.i)->bv_page);
bio_kunmap_bvec(bvec, flags);
i++;
}
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-net.patch
git-nfsd.patch
memoryless-nodes-fixup-uses-of-node_online_map-in-generic-code-fix.patch
use-extended-crashkernel-command-line-on-ia64-fix.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html