Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6

* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
crypto: hash - Fix handling of sg entry that crosses page boundary

+4 -3
+4 -3
crypto/ahash.c
··· 82 82 if (err) 83 83 return err; 84 84 85 - walk->offset = 0; 86 - 87 - if (nbytes) 85 + if (nbytes) { 86 + walk->offset = 0; 87 + walk->pg++; 88 88 return hash_walk_next(walk); 89 + } 89 90 90 91 if (!walk->total) 91 92 return 0;