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
cd53caa1
Commit
cd53caa1
authored
May 10, 2004
by
Ingo Molnar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[netdrvr dmfe] netpoll support
parent
2279a9da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
drivers/net/tulip/dmfe.c
drivers/net/tulip/dmfe.c
+23
-0
No files found.
drivers/net/tulip/dmfe.c
View file @
cd53caa1
...
@@ -299,6 +299,9 @@ static void dmfe_set_filter_mode(struct DEVICE *);
...
@@ -299,6 +299,9 @@ static void dmfe_set_filter_mode(struct DEVICE *);
static
struct
ethtool_ops
netdev_ethtool_ops
;
static
struct
ethtool_ops
netdev_ethtool_ops
;
static
u16
read_srom_word
(
long
,
int
);
static
u16
read_srom_word
(
long
,
int
);
static
irqreturn_t
dmfe_interrupt
(
int
,
void
*
,
struct
pt_regs
*
);
static
irqreturn_t
dmfe_interrupt
(
int
,
void
*
,
struct
pt_regs
*
);
#ifdef CONFIG_NET_POLL_CONTROLLER
static
void
poll_dmfe
(
struct
net_device
*
dev
);
#endif
static
void
dmfe_descriptor_init
(
struct
dmfe_board_info
*
,
unsigned
long
);
static
void
dmfe_descriptor_init
(
struct
dmfe_board_info
*
,
unsigned
long
);
static
void
allocate_rx_buffer
(
struct
dmfe_board_info
*
);
static
void
allocate_rx_buffer
(
struct
dmfe_board_info
*
);
static
void
update_cr6
(
u32
,
unsigned
long
);
static
void
update_cr6
(
u32
,
unsigned
long
);
...
@@ -417,6 +420,9 @@ static int __devinit dmfe_init_one (struct pci_dev *pdev,
...
@@ -417,6 +420,9 @@ static int __devinit dmfe_init_one (struct pci_dev *pdev,
dev
->
stop
=
&
dmfe_stop
;
dev
->
stop
=
&
dmfe_stop
;
dev
->
get_stats
=
&
dmfe_get_stats
;
dev
->
get_stats
=
&
dmfe_get_stats
;
dev
->
set_multicast_list
=
&
dmfe_set_filter_mode
;
dev
->
set_multicast_list
=
&
dmfe_set_filter_mode
;
#ifdef CONFIG_NET_POLL_CONTROLLER
dev
->
poll_controller
=
&
poll_dmfe
;
#endif
dev
->
ethtool_ops
=
&
netdev_ethtool_ops
;
dev
->
ethtool_ops
=
&
netdev_ethtool_ops
;
spin_lock_init
(
&
db
->
lock
);
spin_lock_init
(
&
db
->
lock
);
...
@@ -791,6 +797,23 @@ static irqreturn_t dmfe_interrupt(int irq, void *dev_id, struct pt_regs *regs)
...
@@ -791,6 +797,23 @@ static irqreturn_t dmfe_interrupt(int irq, void *dev_id, struct pt_regs *regs)
}
}
#ifdef CONFIG_NET_POLL_CONTROLLER
/*
* Polling 'interrupt' - used by things like netconsole to send skbs
* without having to re-enable interrupts. It's not called while
* the interrupt routine is executing.
*/
static
void
poll_dmfe
(
struct
net_device
*
dev
)
{
/* disable_irq here is not very nice, but with the lockless
interrupt handler we have no other choice. */
disable_irq
(
dev
->
irq
);
dmfe_interrupt
(
dev
->
irq
,
dev
,
NULL
);
enable_irq
(
dev
->
irq
);
}
#endif
/*
/*
* Free TX resource after TX complete
* Free TX resource after TX complete
*/
*/
...
...
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