Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 87997
b: refs/heads/master
c: 6be9f7b
h: refs/heads/master
i:
  87995: 54b0c39
v: v3
  • Loading branch information
Linus Torvalds committed Apr 2, 2008
1 parent 63e5cc9 commit 238b2e9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 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: 34e6bbf23c8f43e8713d9bd092680f1660494b4a
refs/heads/master: 6be9f7b2835fa442f6b892f174dabc4023c0af2e
17 changes: 9 additions & 8 deletions trunk/crypto/xcbc.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,11 @@ static int crypto_xcbc_digest_update2(struct hash_desc *pdesc,
struct crypto_xcbc_ctx *ctx = crypto_hash_ctx_aligned(parent);
struct crypto_cipher *tfm = ctx->child;
int bs = crypto_hash_blocksize(parent);
unsigned int i = 0;

do {

struct page *pg = sg_page(&sg[i]);
unsigned int offset = sg[i].offset;
unsigned int slen = sg[i].length;
for (;;) {
struct page *pg = sg_page(sg);
unsigned int offset = sg->offset;
unsigned int slen = sg->length;

if (unlikely(slen > nbytes))
slen = nbytes;
Expand Down Expand Up @@ -182,8 +180,11 @@ static int crypto_xcbc_digest_update2(struct hash_desc *pdesc,
offset = 0;
pg++;
}
i++;
} while (nbytes>0);

if (!nbytes)
break;
sg = scatterwalk_sg_next(sg);
}

return 0;
}
Expand Down
1 change: 1 addition & 0 deletions trunk/fs/afs/cell.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ struct afs_cell *afs_cell_create(const char *name, char *vllist)
cell = afs_cell_alloc(name, vllist);
if (IS_ERR(cell)) {
_leave(" = %ld", PTR_ERR(cell));
up_write(&afs_cells_sem);
return cell;
}

Expand Down

0 comments on commit 238b2e9

Please sign in to comment.