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
5913c9bf
Commit
5913c9bf
authored
Mar 09, 2014
by
David Woodhouse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iommu/vt-d: Make domain_add_dev_info() take struct device
Signed-off-by:
David Woodhouse
<
David.Woodhouse@intel.com
>
parent
bf9c9eda
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
drivers/iommu/intel-iommu.c
drivers/iommu/intel-iommu.c
+8
-9
No files found.
drivers/iommu/intel-iommu.c
View file @
5913c9bf
...
...
@@ -2470,25 +2470,24 @@ static int identity_mapping(struct device *dev)
}
static
int
domain_add_dev_info
(
struct
dmar_domain
*
domain
,
struct
pci_dev
*
pdev
,
int
translation
)
struct
device
*
dev
,
int
translation
)
{
struct
dmar_domain
*
ndomain
;
struct
intel_iommu
*
iommu
;
u8
bus
,
devfn
;
int
ret
;
iommu
=
device_to_iommu
(
&
pdev
->
dev
,
&
bus
,
&
devfn
);
iommu
=
device_to_iommu
(
dev
,
&
bus
,
&
devfn
);
if
(
!
iommu
)
return
-
ENODEV
;
ndomain
=
dmar_insert_dev_info
(
iommu
,
bus
,
devfn
,
&
pdev
->
dev
,
domain
);
ndomain
=
dmar_insert_dev_info
(
iommu
,
bus
,
devfn
,
dev
,
domain
);
if
(
ndomain
!=
domain
)
return
-
EBUSY
;
ret
=
domain_context_mapping
(
domain
,
&
pdev
->
dev
,
translation
);
ret
=
domain_context_mapping
(
domain
,
dev
,
translation
);
if
(
ret
)
{
domain_remove_one_dev_info
(
domain
,
&
pdev
->
dev
);
domain_remove_one_dev_info
(
domain
,
dev
);
return
ret
;
}
...
...
@@ -2607,7 +2606,7 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
for_each_pci_dev
(
pdev
)
{
if
(
iommu_should_identity_map
(
&
pdev
->
dev
,
1
))
{
ret
=
domain_add_dev_info
(
si_domain
,
p
dev
,
ret
=
domain_add_dev_info
(
si_domain
,
&
pdev
->
dev
,
hw
?
CONTEXT_TT_PASS_THROUGH
:
CONTEXT_TT_MULTI_LEVEL
);
if
(
ret
)
{
...
...
@@ -2940,7 +2939,7 @@ static int iommu_no_mapping(struct device *dev)
*/
if
(
iommu_should_identity_map
(
&
pdev
->
dev
,
0
))
{
int
ret
;
ret
=
domain_add_dev_info
(
si_domain
,
p
dev
,
ret
=
domain_add_dev_info
(
si_domain
,
dev
,
hw_pass_through
?
CONTEXT_TT_PASS_THROUGH
:
CONTEXT_TT_MULTI_LEVEL
);
...
...
@@ -4201,7 +4200,7 @@ static int intel_iommu_attach_device(struct iommu_domain *domain,
dmar_domain
->
agaw
--
;
}
return
domain_add_dev_info
(
dmar_domain
,
p
dev
,
CONTEXT_TT_MULTI_LEVEL
);
return
domain_add_dev_info
(
dmar_domain
,
dev
,
CONTEXT_TT_MULTI_LEVEL
);
}
static
void
intel_iommu_detach_device
(
struct
iommu_domain
*
domain
,
...
...
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