target/pscsi: Fix page increment
authorAsias He <asias@redhat.com>
Wed, 27 Feb 2013 05:29:29 +0000 (13:29 +0800)
committerNicholas Bellinger <nab@linux-iscsi.org>
Thu, 28 Feb 2013 03:20:21 +0000 (19:20 -0800)
The page++ is wrong. It makes bio_add_pc_page() pointing to a wrong page
address if the 'while (len > 0 && data_len > 0) { ... }' loop is
executed more than one once.

Signed-off-by: Asias He <asias@redhat.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
drivers/target/target_core_pscsi.c

index e005f9f4e4a6880bc8ba127d5e5a877880720f55..f6921bf991135e379cb564a914da788e852b7f56 100644 (file)
@@ -940,7 +940,6 @@ pscsi_map_sg(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents,
                                bio = NULL;
                        }
 
-                       page++;
                        len -= bytes;
                        data_len -= bytes;
                        off = 0;