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
ca747d61
Commit
ca747d61
authored
Nov 25, 2011
by
Cong Wang
Committed by
Cong Wang
Mar 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
target: remove the second argument of k[un]map_atomic()
Signed-off-by:
Cong Wang
<
amwang@redhat.com
>
parent
ba82fe2e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
8 deletions
+6
-8
drivers/target/target_core_transport.c
drivers/target/target_core_transport.c
+2
-2
drivers/target/tcm_fc/tfc_io.c
drivers/target/tcm_fc/tfc_io.c
+4
-6
No files found.
drivers/target/target_core_transport.c
View file @
ca747d61
...
...
@@ -2344,7 +2344,7 @@ static void transport_xor_callback(struct se_cmd *cmd)
offset
=
0
;
for_each_sg
(
cmd
->
t_bidi_data_sg
,
sg
,
cmd
->
t_bidi_data_nents
,
count
)
{
addr
=
kmap_atomic
(
sg_page
(
sg
)
,
KM_USER0
);
addr
=
kmap_atomic
(
sg_page
(
sg
));
if
(
!
addr
)
goto
out
;
...
...
@@ -2352,7 +2352,7 @@ static void transport_xor_callback(struct se_cmd *cmd)
*
(
addr
+
sg
->
offset
+
i
)
^=
*
(
buf
+
offset
+
i
);
offset
+=
sg
->
length
;
kunmap_atomic
(
addr
,
KM_USER0
);
kunmap_atomic
(
addr
);
}
out:
...
...
drivers/target/tcm_fc/tfc_io.c
View file @
ca747d61
...
...
@@ -146,14 +146,13 @@ int ft_queue_data_in(struct se_cmd *se_cmd)
PAGE_SIZE
<<
compound_order
(
page
);
}
else
{
BUG_ON
(
!
page
);
from
=
kmap_atomic
(
page
+
(
mem_off
>>
PAGE_SHIFT
),
KM_SOFTIRQ0
);
from
=
kmap_atomic
(
page
+
(
mem_off
>>
PAGE_SHIFT
));
page_addr
=
from
;
from
+=
mem_off
&
~
PAGE_MASK
;
tlen
=
min
(
tlen
,
(
size_t
)(
PAGE_SIZE
-
(
mem_off
&
~
PAGE_MASK
)));
memcpy
(
to
,
from
,
tlen
);
kunmap_atomic
(
page_addr
,
KM_SOFTIRQ0
);
kunmap_atomic
(
page_addr
);
to
+=
tlen
;
}
...
...
@@ -291,14 +290,13 @@ void ft_recv_write_data(struct ft_cmd *cmd, struct fc_frame *fp)
tlen
=
min
(
mem_len
,
frame_len
);
to
=
kmap_atomic
(
page
+
(
mem_off
>>
PAGE_SHIFT
),
KM_SOFTIRQ0
);
to
=
kmap_atomic
(
page
+
(
mem_off
>>
PAGE_SHIFT
));
page_addr
=
to
;
to
+=
mem_off
&
~
PAGE_MASK
;
tlen
=
min
(
tlen
,
(
size_t
)(
PAGE_SIZE
-
(
mem_off
&
~
PAGE_MASK
)));
memcpy
(
to
,
from
,
tlen
);
kunmap_atomic
(
page_addr
,
KM_SOFTIRQ0
);
kunmap_atomic
(
page_addr
);
from
+=
tlen
;
frame_len
-=
tlen
;
...
...
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