tcmu: fix page addr in tcmu_flush_dcache_range
authortangwenji <tang.wenji@zte.com.cn>
Tue, 28 Nov 2017 18:40:27 +0000 (12:40 -0600)
committerNicholas Bellinger <nab@linux-iscsi.org>
Fri, 12 Jan 2018 23:07:10 +0000 (15:07 -0800)
The page addr should be update.

Signed-off-by: tangwenji <tang.wenji@zte.com.cn>
Signed-off-by: Mike Christie <mchristi@redhat.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
drivers/target/target_core_user.c

index a415d87..6bcaa8b 100644 (file)
@@ -455,12 +455,13 @@ static struct tcmu_cmd *tcmu_alloc_cmd(struct se_cmd *se_cmd)
 static inline void tcmu_flush_dcache_range(void *vaddr, size_t size)
 {
        unsigned long offset = offset_in_page(vaddr);
+       void *start = vaddr - offset;
 
        size = round_up(size+offset, PAGE_SIZE);
-       vaddr -= offset;
 
        while (size) {
-               flush_dcache_page(virt_to_page(vaddr));
+               flush_dcache_page(virt_to_page(start));
+               start += PAGE_SIZE;
                size -= PAGE_SIZE;
        }
 }