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
1e963aac
Commit
1e963aac
authored
Aug 29, 2002
by
Peter Wächtler
Committed by
Linus Torvalds
Aug 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] oss/pss.c - convert cli to spinlocks
parent
6681f46b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
33 deletions
+29
-33
sound/oss/pss.c
sound/oss/pss.c
+29
-33
No files found.
sound/oss/pss.c
View file @
1e963aac
...
...
@@ -60,6 +60,7 @@
#include <linux/config.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include "sound_config.h"
#include "sound_firmware.h"
...
...
@@ -142,6 +143,7 @@ typedef struct pss_confdata {
static
pss_confdata
pss_data
;
static
pss_confdata
*
devc
=
&
pss_data
;
static
spinlock_t
lock
=
SPIN_LOCK_UNLOCKED
;
static
int
pss_initialized
=
0
;
static
int
nonstandard_microcode
=
0
;
...
...
@@ -838,18 +840,17 @@ static int pss_coproc_ioctl(void *dev_info, unsigned int cmd, caddr_t arg, int l
return
-
EFAULT
;
}
data
=
(
unsigned
short
*
)(
mbuf
->
data
);
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
lock
,
flags
);
for
(
i
=
0
;
i
<
mbuf
->
len
;
i
++
)
{
if
(
!
pss_put_dspword
(
devc
,
*
data
++
))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
mbuf
->
len
=
i
;
/* feed back number of WORDs sent */
err
=
copy_to_user
(
arg
,
mbuf
,
sizeof
(
copr_msg
));
vfree
(
mbuf
);
return
err
?
-
EFAULT
:
-
EIO
;
}
}
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
vfree
(
mbuf
);
return
0
;
...
...
@@ -859,8 +860,7 @@ static int pss_coproc_ioctl(void *dev_info, unsigned int cmd, caddr_t arg, int l
if
(
mbuf
==
NULL
)
return
-
ENOSPC
;
data
=
(
unsigned
short
*
)
mbuf
->
data
;
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
lock
,
flags
);
for
(
i
=
0
;
i
<
sizeof
(
mbuf
->
data
)
/
sizeof
(
unsigned
short
);
i
++
)
{
mbuf
->
len
=
i
;
/* feed back number of WORDs read */
if
(
!
pss_get_dspword
(
devc
,
data
++
))
{
...
...
@@ -869,7 +869,7 @@ static int pss_coproc_ioctl(void *dev_info, unsigned int cmd, caddr_t arg, int l
break
;
}
}
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
if
(
copy_to_user
(
arg
,
mbuf
,
sizeof
(
copr_msg
)))
err
=
-
EFAULT
;
vfree
(
mbuf
);
...
...
@@ -878,22 +878,21 @@ static int pss_coproc_ioctl(void *dev_info, unsigned int cmd, caddr_t arg, int l
case
SNDCTL_COPR_RDATA
:
if
(
copy_from_user
(
&
dbuf
,
arg
,
sizeof
(
dbuf
)))
return
-
EFAULT
;
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
lock
,
flags
);
if
(
!
pss_put_dspword
(
devc
,
0x00d0
))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
if
(
!
pss_put_dspword
(
devc
,
(
unsigned
short
)(
dbuf
.
parm1
&
0xffff
)))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
if
(
!
pss_get_dspword
(
devc
,
&
tmp
))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
dbuf
.
parm1
=
tmp
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
if
(
copy_to_user
(
arg
,
&
dbuf
,
sizeof
(
dbuf
)))
return
-
EFAULT
;
return
0
;
...
...
@@ -901,74 +900,71 @@ static int pss_coproc_ioctl(void *dev_info, unsigned int cmd, caddr_t arg, int l
case
SNDCTL_COPR_WDATA
:
if
(
copy_from_user
(
&
dbuf
,
arg
,
sizeof
(
dbuf
)))
return
-
EFAULT
;
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
lock
,
flags
);
if
(
!
pss_put_dspword
(
devc
,
0x00d1
))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
if
(
!
pss_put_dspword
(
devc
,
(
unsigned
short
)
(
dbuf
.
parm1
&
0xffff
)))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
tmp
=
(
unsigned
int
)
dbuf
.
parm2
&
0xffff
;
if
(
!
pss_put_dspword
(
devc
,
tmp
))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
0
;
case
SNDCTL_COPR_WCODE
:
if
(
copy_from_user
(
&
dbuf
,
arg
,
sizeof
(
dbuf
)))
return
-
EFAULT
;
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
lock
,
flags
);
if
(
!
pss_put_dspword
(
devc
,
0x00d3
))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
if
(
!
pss_put_dspword
(
devc
,
(
unsigned
short
)(
dbuf
.
parm1
&
0xffff
)))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
tmp
=
(
unsigned
int
)
dbuf
.
parm2
&
0x00ff
;
if
(
!
pss_put_dspword
(
devc
,
tmp
))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
tmp
=
((
unsigned
int
)
dbuf
.
parm2
>>
8
)
&
0xffff
;
if
(
!
pss_put_dspword
(
devc
,
tmp
))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
0
;
case
SNDCTL_COPR_RCODE
:
if
(
copy_from_user
(
&
dbuf
,
arg
,
sizeof
(
dbuf
)))
return
-
EFAULT
;
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
lock
,
flags
);
if
(
!
pss_put_dspword
(
devc
,
0x00d2
))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
if
(
!
pss_put_dspword
(
devc
,
(
unsigned
short
)(
dbuf
.
parm1
&
0xffff
)))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
if
(
!
pss_get_dspword
(
devc
,
&
tmp
))
{
/* Read MSB */
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
dbuf
.
parm1
=
tmp
<<
8
;
if
(
!
pss_get_dspword
(
devc
,
&
tmp
))
{
/* Read LSB */
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
return
-
EIO
;
}
dbuf
.
parm1
|=
tmp
&
0x00ff
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
if
(
copy_to_user
(
arg
,
&
dbuf
,
sizeof
(
dbuf
)))
return
-
EFAULT
;
return
0
;
...
...
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