Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
515729ec
Commit
515729ec
authored
Nov 08, 2005
by
Paul Mackerras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
powermac: Use a spinlock in swim3.c (floppy driver) instead of cli
Signed-off-by:
Paul Mackerras
<
paulus@samba.org
>
parent
3fb62b51
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
drivers/block/swim3.c
drivers/block/swim3.c
+10
-10
No files found.
drivers/block/swim3.c
View file @
515729ec
...
...
@@ -28,6 +28,7 @@
#include <linux/devfs_fs_kernel.h>
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include <asm/io.h>
#include <asm/dbdma.h>
#include <asm/prom.h>
...
...
@@ -176,6 +177,7 @@ struct swim3 {
struct
floppy_state
{
enum
swim_state
state
;
spinlock_t
lock
;
struct
swim3
__iomem
*
swim3
;
/* hardware registers */
struct
dbdma_regs
__iomem
*
dma
;
/* DMA controller registers */
int
swim3_intr
;
/* interrupt number for SWIM3 */
...
...
@@ -304,7 +306,6 @@ static void do_fd_request(request_queue_t * q)
#endif
/* CONFIG_PMAC_MEDIABAY */
start_request
(
&
floppy_states
[
i
]);
}
sti
();
}
static
void
start_request
(
struct
floppy_state
*
fs
)
...
...
@@ -370,7 +371,7 @@ static void set_timeout(struct floppy_state *fs, int nticks,
{
unsigned
long
flags
;
s
ave_flags
(
flags
);
cli
(
);
s
pin_lock_irqsave
(
&
fs
->
lock
,
flags
);
if
(
fs
->
timeout_pending
)
del_timer
(
&
fs
->
timeout
);
fs
->
timeout
.
expires
=
jiffies
+
nticks
;
...
...
@@ -378,7 +379,7 @@ static void set_timeout(struct floppy_state *fs, int nticks,
fs
->
timeout
.
data
=
(
unsigned
long
)
fs
;
add_timer
(
&
fs
->
timeout
);
fs
->
timeout_pending
=
1
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
fs
->
lock
,
flags
);
}
static
inline
void
scan_track
(
struct
floppy_state
*
fs
)
...
...
@@ -790,14 +791,13 @@ static int grab_drive(struct floppy_state *fs, enum swim_state state,
{
unsigned
long
flags
;
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
fs
->
lock
,
flags
);
if
(
fs
->
state
!=
idle
)
{
++
fs
->
wanted
;
while
(
fs
->
state
!=
available
)
{
if
(
interruptible
&&
signal_pending
(
current
))
{
--
fs
->
wanted
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
fs
->
lock
,
flags
);
return
-
EINTR
;
}
interruptible_sleep_on
(
&
fs
->
wait
);
...
...
@@ -805,7 +805,7 @@ static int grab_drive(struct floppy_state *fs, enum swim_state state,
--
fs
->
wanted
;
}
fs
->
state
=
state
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
fs
->
lock
,
flags
);
return
0
;
}
...
...
@@ -813,11 +813,10 @@ static void release_drive(struct floppy_state *fs)
{
unsigned
long
flags
;
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
fs
->
lock
,
flags
);
fs
->
state
=
idle
;
start_request
(
fs
);
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
fs
->
lock
,
flags
);
}
static
int
fd_eject
(
struct
floppy_state
*
fs
)
...
...
@@ -1109,6 +1108,7 @@ static int swim3_add_device(struct device_node *swim)
pmac_call_feature
(
PMAC_FTR_SWIM3_ENABLE
,
swim
,
0
,
1
);
memset
(
fs
,
0
,
sizeof
(
*
fs
));
spin_lock_init
(
&
fs
->
lock
);
fs
->
state
=
idle
;
fs
->
swim3
=
(
struct
swim3
__iomem
*
)
ioremap
(
swim
->
addrs
[
0
].
address
,
0x200
);
...
...
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