Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 186229
b: refs/heads/master
c: cda1c5a
h: refs/heads/master
i:
  186227: 541cb0c
v: v3
  • Loading branch information
Roel Kluin authored and Linus Torvalds committed Mar 6, 2010
1 parent 5a302a3 commit 0ccc7f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ba875ba6b7cd28c5f15680ed694276510aa69970
refs/heads/master: cda1c5af26a00ee31cdc5ab8321a1be7851cbfff
2 changes: 1 addition & 1 deletion trunk/arch/cris/arch-v32/drivers/cryptocop.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,9 +628,9 @@ static int create_output_descriptors(struct cryptocop_operation *operation, int
cdesc->dma_descr->buf = (char*)virt_to_phys(operation->tfrm_op.indata[*iniov_ix].iov_base + *iniov_offset);
cdesc->dma_descr->after = cdesc->dma_descr->buf + dlength;

assert(desc_len >= dlength);
desc_len -= dlength;
*iniov_offset += dlength;
assert(desc_len >= 0);
if (*iniov_offset >= operation->tfrm_op.indata[*iniov_ix].iov_len) {
*iniov_offset = 0;
++(*iniov_ix);
Expand Down

0 comments on commit 0ccc7f3

Please sign in to comment.