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
047ab431
Commit
047ab431
authored
Nov 04, 2002
by
Andrew Morton
Committed by
Linus Torvalds
Nov 04, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] timers: input, networking
More timer micropatches.
parent
6a65c34a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
drivers/input/serio/i8042.c
drivers/input/serio/i8042.c
+1
-0
net/ipv4/inetpeer.c
net/ipv4/inetpeer.c
+1
-1
net/ipv4/route.c
net/ipv4/route.c
+2
-0
net/ipv4/tcp_minisocks.c
net/ipv4/tcp_minisocks.c
+3
-2
No files found.
drivers/input/serio/i8042.c
View file @
047ab431
...
...
@@ -844,6 +844,7 @@ int __init i8042_init(void)
i8042_port_register
(
&
i8042_kbd_values
,
&
i8042_kbd_port
);
init_timer
(
&
i8042_timer
);
i8042_timer
.
function
=
i8042_timer_func
;
mod_timer
(
&
i8042_timer
,
jiffies
+
I8042_POLL_PERIOD
);
...
...
net/ipv4/inetpeer.c
View file @
047ab431
...
...
@@ -98,7 +98,7 @@ spinlock_t inet_peer_unused_lock = SPIN_LOCK_UNLOCKED;
static
void
peer_check_expire
(
unsigned
long
dummy
);
static
struct
timer_list
peer_periodic_timer
=
{
.
function
=
&
peer_check_expire
}
;
TIMER_INITIALIZER
(
peer_check_expire
,
0
,
0
)
;
/* Exported for sysctl_net_ipv4. */
int
inet_peer_gc_mintime
=
10
*
HZ
,
...
...
net/ipv4/route.c
View file @
047ab431
...
...
@@ -2526,7 +2526,9 @@ void __init ip_rt_init(void)
devinet_init
();
ip_fib_init
();
init_timer
(
&
rt_flush_timer
);
rt_flush_timer
.
function
=
rt_run_flush
;
init_timer
(
&
rt_periodic_timer
);
rt_periodic_timer
.
function
=
rt_check_expire
;
/* All the timers, started at system startup tend
...
...
net/ipv4/tcp_minisocks.c
View file @
047ab431
...
...
@@ -428,7 +428,7 @@ static void tcp_twkill(unsigned long);
static
struct
tcp_tw_bucket
*
tcp_tw_death_row
[
TCP_TWKILL_SLOTS
];
static
spinlock_t
tw_death_lock
=
SPIN_LOCK_UNLOCKED
;
static
struct
timer_list
tcp_tw_timer
=
{
.
function
=
tcp_twkill
}
;
static
struct
timer_list
tcp_tw_timer
=
TIMER_INITIALIZER
(
tcp_twkill
,
0
,
0
)
;
static
void
SMP_TIMER_NAME
(
tcp_twkill
)(
unsigned
long
dummy
)
{
...
...
@@ -495,7 +495,8 @@ void tcp_tw_deschedule(struct tcp_tw_bucket *tw)
static
int
tcp_twcal_hand
=
-
1
;
static
int
tcp_twcal_jiffie
;
static
void
tcp_twcal_tick
(
unsigned
long
);
static
struct
timer_list
tcp_twcal_timer
=
{.
function
=
tcp_twcal_tick
};
static
struct
timer_list
tcp_twcal_timer
=
TIMER_INITIALIZER
(
tcp_twcal_tick
,
0
,
0
);
static
struct
tcp_tw_bucket
*
tcp_twcal_row
[
TCP_TW_RECYCLE_SLOTS
];
void
tcp_tw_schedule
(
struct
tcp_tw_bucket
*
tw
,
int
timeo
)
...
...
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