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
d7d2454a
Commit
d7d2454a
authored
Oct 02, 2002
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[EQL]: Rewrite to be SMP safe.
parent
e367aa9a
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
330 additions
and
732 deletions
+330
-732
drivers/net/eql.c
drivers/net/eql.c
+301
-706
include/linux/if_eql.h
include/linux/if_eql.h
+29
-26
No files found.
drivers/net/eql.c
View file @
d7d2454a
This diff is collapsed.
Click to expand it.
include/linux/if_eql.h
View file @
d7d2454a
...
@@ -19,8 +19,6 @@
...
@@ -19,8 +19,6 @@
#ifndef _LINUX_IF_EQL_H
#ifndef _LINUX_IF_EQL_H
#define _LINUX_IF_EQL_H
#define _LINUX_IF_EQL_H
#include <linux/timer.h>
#define EQL_DEFAULT_SLAVE_PRIORITY 28800
#define EQL_DEFAULT_SLAVE_PRIORITY 28800
#define EQL_DEFAULT_MAX_SLAVES 4
#define EQL_DEFAULT_MAX_SLAVES 4
#define EQL_DEFAULT_MTU 576
#define EQL_DEFAULT_MTU 576
...
@@ -35,32 +33,37 @@
...
@@ -35,32 +33,37 @@
#define EQL_GETMASTRCFG (SIOCDEVPRIVATE + 4)
#define EQL_GETMASTRCFG (SIOCDEVPRIVATE + 4)
#define EQL_SETMASTRCFG (SIOCDEVPRIVATE + 5)
#define EQL_SETMASTRCFG (SIOCDEVPRIVATE + 5)
#ifdef __KERNEL__
#include <linux/timer.h>
#include <linux/spinlock.h>
typedef
struct
slave
{
typedef
struct
slave
{
struct
list_head
list
;
struct
net_device
*
dev
;
struct
net_device
*
dev
;
long
priority
;
long
priority
;
long
priority_bps
;
long
priority_bps
;
long
priority_Bps
;
long
priority_Bps
;
long
bytes_queued
;
long
bytes_queued
;
struct
slave
*
next
;
}
slave_t
;
}
slave_t
;
typedef
struct
slave_queue
{
typedef
struct
slave_queue
{
slave_t
*
head
;
spinlock_t
lock
;
slave_t
*
best_slave
;
struct
list_head
all_slaves
;
int
num_slaves
;
int
num_slaves
;
struct
net_device
*
master_dev
;
struct
net_device
*
master_dev
;
char
lock
;
}
slave_queue_t
;
}
slave_queue_t
;
typedef
struct
equalizer
{
typedef
struct
equalizer
{
slave_queue_t
*
queue
;
slave_queue_t
queue
;
int
min_slaves
;
int
min_slaves
;
int
max_slaves
;
int
max_slaves
;
struct
net_device_stats
*
stats
;
struct
net_device_stats
stats
;
struct
timer_list
timer
;
struct
timer_list
timer
;
char
timer_on
;
}
equalizer_t
;
}
equalizer_t
;
#endif
/* __KERNEL__ */
typedef
struct
master_config
{
typedef
struct
master_config
{
char
master_name
[
16
];
char
master_name
[
16
];
int
max_slaves
;
int
max_slaves
;
...
...
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