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
59b69ac2
Commit
59b69ac2
authored
Oct 11, 2012
by
James Morris
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'tpmdd-next-v3.6' of
git://github.com/shpedoikal/linux
into for-linus
parents
bb95a0d7
abce9ac2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
drivers/char/tpm/tpm.c
drivers/char/tpm/tpm.c
+14
-7
No files found.
drivers/char/tpm/tpm.c
View file @
59b69ac2
...
...
@@ -1182,17 +1182,20 @@ ssize_t tpm_write(struct file *file, const char __user *buf,
size_t
size
,
loff_t
*
off
)
{
struct
tpm_chip
*
chip
=
file
->
private_data
;
size_t
in_size
=
size
,
out_size
;
size_t
in_size
=
size
;
ssize_t
out_size
;
/* cannot perform a write until the read has cleared
either via tpm_read or a user_read_timer timeout
*/
while
(
atomic_read
(
&
chip
->
data_pending
)
!=
0
)
msleep
(
TPM_TIMEOUT
);
mutex_lock
(
&
chip
->
buffer_mutex
)
;
either via tpm_read or a user_read_timer timeout
.
This also prevents splitted buffered writes from blocking here.
*/
if
(
atomic_read
(
&
chip
->
data_pending
)
!=
0
)
return
-
EBUSY
;
if
(
in_size
>
TPM_BUFSIZE
)
in_size
=
TPM_BUFSIZE
;
return
-
E2BIG
;
mutex_lock
(
&
chip
->
buffer_mutex
);
if
(
copy_from_user
(
chip
->
data_buffer
,
(
void
__user
*
)
buf
,
in_size
))
{
...
...
@@ -1202,6 +1205,10 @@ ssize_t tpm_write(struct file *file, const char __user *buf,
/* atomic tpm command send and result receive */
out_size
=
tpm_transmit
(
chip
,
chip
->
data_buffer
,
TPM_BUFSIZE
);
if
(
out_size
<
0
)
{
mutex_unlock
(
&
chip
->
buffer_mutex
);
return
out_size
;
}
atomic_set
(
&
chip
->
data_pending
,
out_size
);
mutex_unlock
(
&
chip
->
buffer_mutex
);
...
...
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