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
nexedi
linux
Commits
6cadcfe1
Commit
6cadcfe1
authored
Aug 30, 2002
by
Peter Wächtler
Committed by
Linus Torvalds
Aug 30, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] oss/sound_timer.c - convert cli to spinlocks
parent
8531bffd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
sound/oss/sound_timer.c
sound/oss/sound_timer.c
+8
-4
No files found.
sound/oss/sound_timer.c
View file @
6cadcfe1
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
* Thomas Sailer : ioctl code reworked (vmalloc/vfree removed)
* Thomas Sailer : ioctl code reworked (vmalloc/vfree removed)
*/
*/
#include <linux/string.h>
#include <linux/string.h>
#include <linux/spinlock.h>
#include "sound_config.h"
#include "sound_config.h"
...
@@ -26,6 +26,7 @@ static unsigned long prev_event_time;
...
@@ -26,6 +26,7 @@ static unsigned long prev_event_time;
static
volatile
unsigned
long
usecs_per_tmr
;
/* Length of the current interval */
static
volatile
unsigned
long
usecs_per_tmr
;
/* Length of the current interval */
static
struct
sound_lowlev_timer
*
tmr
;
static
struct
sound_lowlev_timer
*
tmr
;
static
spinlock_t
lock
;
static
unsigned
long
tmr2ticks
(
int
tmr_value
)
static
unsigned
long
tmr2ticks
(
int
tmr_value
)
{
{
...
@@ -80,15 +81,14 @@ static void tmr_reset(void)
...
@@ -80,15 +81,14 @@ static void tmr_reset(void)
{
{
unsigned
long
flags
;
unsigned
long
flags
;
save_flags
(
flags
);
spin_lock_irqsave
(
&
lock
,
flags
);
cli
();
tmr_offs
=
0
;
tmr_offs
=
0
;
ticks_offs
=
0
;
ticks_offs
=
0
;
tmr_ctr
=
0
;
tmr_ctr
=
0
;
next_event_time
=
(
unsigned
long
)
-
1
;
next_event_time
=
(
unsigned
long
)
-
1
;
prev_event_time
=
0
;
prev_event_time
=
0
;
curr_ticks
=
0
;
curr_ticks
=
0
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
lock
,
flags
);
}
}
static
int
timer_open
(
int
dev
,
int
mode
)
static
int
timer_open
(
int
dev
,
int
mode
)
...
@@ -278,6 +278,8 @@ static struct sound_timer_operations sound_timer =
...
@@ -278,6 +278,8 @@ static struct sound_timer_operations sound_timer =
void
sound_timer_interrupt
(
void
)
void
sound_timer_interrupt
(
void
)
{
{
unsigned
long
flags
;
if
(
!
opened
)
if
(
!
opened
)
return
;
return
;
...
@@ -286,6 +288,7 @@ void sound_timer_interrupt(void)
...
@@ -286,6 +288,7 @@ void sound_timer_interrupt(void)
if
(
!
tmr_running
)
if
(
!
tmr_running
)
return
;
return
;
spin_lock_irqsave
(
&
lock
,
flags
);
tmr_ctr
++
;
tmr_ctr
++
;
curr_ticks
=
ticks_offs
+
tmr2ticks
(
tmr_ctr
);
curr_ticks
=
ticks_offs
+
tmr2ticks
(
tmr_ctr
);
...
@@ -294,6 +297,7 @@ void sound_timer_interrupt(void)
...
@@ -294,6 +297,7 @@ void sound_timer_interrupt(void)
next_event_time
=
(
unsigned
long
)
-
1
;
next_event_time
=
(
unsigned
long
)
-
1
;
sequencer_timer
(
0
);
sequencer_timer
(
0
);
}
}
spin_unlock_irqrestore
(
&
lock
,
flags
);
}
}
void
sound_timer_init
(
struct
sound_lowlev_timer
*
t
,
char
*
name
)
void
sound_timer_init
(
struct
sound_lowlev_timer
*
t
,
char
*
name
)
...
...
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