forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'for-linus' of git://git.kernel.dk/data/git/linux-2.6-block
* 'for-linus' of git://git.kernel.dk/data/git/linux-2.6-block: (63 commits) Fix memory leak in dm-crypt SPARC64: sg chaining support SPARC: sg chaining support PPC: sg chaining support PS3: sg chaining support IA64: sg chaining support x86-64: enable sg chaining x86-64: update pci-gart iommu to sg helpers x86-64: update nommu to sg helpers x86-64: update calgary iommu to sg helpers swiotlb: sg chaining support i386: enable sg chaining i386 dma_map_sg: convert to using sg helpers mmc: need to zero sglist on init Panic in blk_rq_map_sg() from CCISS driver remove sglist_len remove blk_queue_max_phys_segments in libata revert sg segment size ifdefs Fixup u14-34f ENABLE_SG_CHAINING qla1280: enable use_sg_chaining option ...
- Loading branch information
Showing
142 changed files
with
1,186 additions
and
1,115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -514,7 +514,7 @@ With scatterlists, you map a region gathered from several regions by: | |
int i, count = pci_map_sg(dev, sglist, nents, direction); | ||
struct scatterlist *sg; | ||
|
||
for (i = 0, sg = sglist; i < count; i++, sg++) { | ||
for_each_sg(sglist, sg, count, i) { | ||
hw_address[i] = sg_dma_address(sg); | ||
hw_len[i] = sg_dma_len(sg); | ||
} | ||
|
@@ -782,5 +782,5 @@ following people: | |
Jay Estabrook <[email protected]> | ||
Thomas Sailer <[email protected]> | ||
Andrea Arcangeli <[email protected]> | ||
Jens Axboe <axboe@suse.de> | ||
Jens Axboe <jens.axboe@oracle.com> | ||
David Mosberger-Tang <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -330,7 +330,7 @@ Here is a list of some of the different kernel trees available: | |
- ACPI development tree, Len Brown <[email protected]> | ||
git.kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git | ||
|
||
- Block development tree, Jens Axboe <axboe@suse.de> | ||
- Block development tree, Jens Axboe <jens.axboe@oracle.com> | ||
git.kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git | ||
|
||
- DRM development tree, Dave Airlie <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
00-INDEX | ||
- This file | ||
as-iosched.txt | ||
- Anticipatory IO scheduler | ||
barrier.txt | ||
- I/O Barriers | ||
biodoc.txt | ||
- Notes on the Generic Block Layer Rewrite in Linux 2.5 | ||
capability.txt | ||
- Generic Block Device Capability (/sys/block/<disk>/capability) | ||
deadline-iosched.txt | ||
- Deadline IO scheduler tunables | ||
ioprio.txt | ||
- Block io priorities (in CFQ scheduler) | ||
request.txt | ||
- The members of struct request (in include/linux/blkdev.h) | ||
stat.txt | ||
- Block layer statistics in /sys/block/<dev>/stat | ||
switching-sched.txt | ||
- Switching I/O schedulers at runtime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
===================================================== | ||
|
||
Notes Written on Jan 15, 2002: | ||
Jens Axboe <axboe@suse.de> | ||
Jens Axboe <jens.axboe@oracle.com> | ||
Suparna Bhattacharya <[email protected]> | ||
|
||
Last Updated May 2, 2002 | ||
|
@@ -21,7 +21,7 @@ Credits: | |
--------- | ||
|
||
2.5 bio rewrite: | ||
Jens Axboe <axboe@suse.de> | ||
Jens Axboe <jens.axboe@oracle.com> | ||
|
||
Many aspects of the generic block layer redesign were driven by and evolved | ||
over discussions, prior patches and the collective experience of several | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.