aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/tcrypt.c
diff options
context:
space:
mode:
authorJens Axboe <jens.axboe@oracle.com>2007-10-22 13:40:16 -0400
committerJens Axboe <jens.axboe@oracle.com>2007-10-22 13:40:16 -0400
commit78c2f0b8c285c5305b3e67b0595200541e15eb43 (patch)
tree6537a046641e9a3dba3f4735b42d7f04e60e29f8 /crypto/tcrypt.c
parent9b61764bcb4360e04386f0415a01da8271631004 (diff)
[SG] Update crypto/ to sg helpers
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'crypto/tcrypt.c')
-rw-r--r--crypto/tcrypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index 18d489c8b935..d741c63af42c 100644
--- a/crypto/tcrypt.c
+++ b/crypto/tcrypt.c
@@ -317,7 +317,7 @@ static void test_cipher(char *algo, int enc,
317 goto out; 317 goto out;
318 } 318 }
319 319
320 q = kmap(sg[0].page) + sg[0].offset; 320 q = kmap(sg_page(&sg[0])) + sg[0].offset;
321 hexdump(q, cipher_tv[i].rlen); 321 hexdump(q, cipher_tv[i].rlen);
322 322
323 printk("%s\n", 323 printk("%s\n",
@@ -390,7 +390,7 @@ static void test_cipher(char *algo, int enc,
390 temp = 0; 390 temp = 0;
391 for (k = 0; k < cipher_tv[i].np; k++) { 391 for (k = 0; k < cipher_tv[i].np; k++) {
392 printk("page %u\n", k); 392 printk("page %u\n", k);
393 q = kmap(sg[k].page) + sg[k].offset; 393 q = kmap(sg_page(&sg[k])) + sg[k].offset;
394 hexdump(q, cipher_tv[i].tap[k]); 394 hexdump(q, cipher_tv[i].tap[k]);
395 printk("%s\n", 395 printk("%s\n",
396 memcmp(q, cipher_tv[i].result + temp, 396 memcmp(q, cipher_tv[i].result + temp,