Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
978d7b0b
Commit
978d7b0b
authored
Apr 02, 2002
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Remove address member from scatterlist docs.
The element is dead, so update the docs to reflect reality.
parent
1413ed21
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
Documentation/DMA-mapping.txt
Documentation/DMA-mapping.txt
+0
-6
No files found.
Documentation/DMA-mapping.txt
View file @
978d7b0b
...
@@ -759,13 +759,10 @@ to "Closing".
...
@@ -759,13 +759,10 @@ to "Closing".
Struct scatterlist must contain, at a minimum, the following
Struct scatterlist must contain, at a minimum, the following
members:
members:
char *address;
struct page *page;
struct page *page;
unsigned int offset;
unsigned int offset;
unsigned int length;
unsigned int length;
The "address" member will disappear in 2.5.x
This means that your pci_{map,unmap}_sg() and all other
This means that your pci_{map,unmap}_sg() and all other
interfaces dealing with scatterlists must be able to cope
interfaces dealing with scatterlists must be able to cope
properly with page being non NULL.
properly with page being non NULL.
...
@@ -775,9 +772,6 @@ to "Closing".
...
@@ -775,9 +772,6 @@ to "Closing".
If "address" is NULL, then "page+offset" is being used.
If "address" is NULL, then "page+offset" is being used.
If "page" is NULL, then "address" is being used.
If "page" is NULL, then "address" is being used.
In 2.5.x, all scatterlists will use "page+offset". But during
2.4.x we still have to support the old method.
2) More to come...
2) More to come...
Closing
Closing
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment