Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Software
Manage
Activity
Members
Labels
Plan
Issues
87
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Software
Commits
a7ec7e40
Commit
a7ec7e40
authored
12 years ago
by
Alessandro Rubini
Browse files
Options
Downloads
Patches
Plain Diff
wr_nic: use_count only if WR_IS_SWITCH
Signed-off-by:
Alessandro Rubini
<
rubini@gnudd.com
>
parent
c4675c82
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
kernel/wr_nic/device.c
+12
-8
12 additions, 8 deletions
kernel/wr_nic/device.c
with
12 additions
and
8 deletions
kernel/wr_nic/device.c
+
12
−
8
View file @
a7ec7e40
...
...
@@ -30,9 +30,11 @@ static int wrn_remove(struct platform_device *pdev)
struct
wrn_dev
*
wrn
=
pdev
->
dev
.
platform_data
;
int
i
;
spin_lock
(
&
wrn
->
lock
);
--
wrn
->
use_count
;
/* Hmmm... looks like overkill... */
spin_unlock
(
&
wrn
->
lock
);
if
(
WR_IS_SWITCH
)
{
spin_lock
(
&
wrn
->
lock
);
--
wrn
->
use_count
;
/* Hmmm... looks like overkill... */
spin_unlock
(
&
wrn
->
lock
);
}
/* First of all, stop any transmission */
writel
(
0
,
&
wrn
->
regs
->
CR
);
...
...
@@ -104,13 +106,15 @@ static int __devinit wrn_probe(struct platform_device *pdev)
static
irq_handler_t
irq_handlers
[]
=
WRN_IRQ_HANDLERS
;
/* No need to lock_irq: we only protect count and continue unlocked */
spin_lock
(
&
wrn
->
lock
);
if
(
++
wrn
->
use_count
!=
1
)
{
--
wrn
->
use_count
;
if
(
WR_IS_SWITCH
)
{
spin_lock
(
&
wrn
->
lock
);
if
(
++
wrn
->
use_count
!=
1
)
{
--
wrn
->
use_count
;
spin_unlock
(
&
wrn
->
lock
);
return
-
EBUSY
;
}
spin_unlock
(
&
wrn
->
lock
);
return
-
EBUSY
;
}
spin_unlock
(
&
wrn
->
lock
);
/* Map our resource list and instantiate the shortcut pointers */
if
(
(
err
=
__wrn_map_resources
(
pdev
))
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment