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
5cc6ded9
Commit
5cc6ded9
authored
Oct 27, 2002
by
Alan Cox
Committed by
Linus Torvalds
Oct 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] move ip2 to workqueues
parent
73d5c81e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
14 deletions
+11
-14
drivers/char/ip2/i2lib.c
drivers/char/ip2/i2lib.c
+4
-6
drivers/char/ip2main.c
drivers/char/ip2main.c
+7
-8
No files found.
drivers/char/ip2/i2lib.c
View file @
5cc6ded9
...
...
@@ -84,8 +84,8 @@ static void iiSendPendingMail(i2eBordStrPtr);
static
void
serviceOutgoingFifo
(
i2eBordStrPtr
);
// Functions defined in ip2.c as part of interrupt handling
static
void
do_input
(
i2ChanStrPtr
);
static
void
do_status
(
i2ChanStrPtr
);
static
void
do_input
(
void
*
);
static
void
do_status
(
void
*
);
//***************
//* Debug Data *
...
...
@@ -333,10 +333,8 @@ i2InitChannels ( i2eBordStrPtr pB, int nChannels, i2ChanStrPtr pCh)
pCh
->
ClosingWaitTime
=
30
*
HZ
;
// Initialize task queue objects
pCh
->
tqueue_input
.
routine
=
(
void
(
*
)(
void
*
))
do_input
;
pCh
->
tqueue_input
.
data
=
pCh
;
pCh
->
tqueue_status
.
routine
=
(
void
(
*
)(
void
*
))
do_status
;
pCh
->
tqueue_status
.
data
=
pCh
;
INIT_WORK
(
&
pCh
->
tqueue_input
,
do_input
,
pCh
);
INIT_WORK
(
&
pCh
->
tqueue_status
,
do_status
,
pCh
);
#ifdef IP2DEBUG_TRACE
pCh
->
trace
=
ip2trace
;
...
...
drivers/char/ip2main.c
View file @
5cc6ded9
...
...
@@ -281,8 +281,8 @@ static void ip2_interrupt_bh(i2eBordStrPtr pB);
static
void
ip2_interrupt
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
);
static
void
ip2_poll
(
unsigned
long
arg
);
static
inline
void
service_all_boards
(
void
);
static
inline
void
do_input
(
i2ChanStrPtr
pCh
);
static
inline
void
do_status
(
i2ChanStrPtr
pCh
);
static
void
do_input
(
void
*
p
);
static
void
do_status
(
void
*
p
);
static
void
ip2_wait_until_sent
(
PTTY
,
int
);
...
...
@@ -1422,9 +1422,9 @@ ip2_poll(unsigned long arg)
ip2trace
(
ITRC_NO_PORT
,
ITRC_INTR
,
ITRC_RETURN
,
0
);
}
static
inline
void
do_input
(
i2ChanStrPtr
pCh
)
static
void
do_input
(
void
*
p
)
{
i2ChanStrPtr
pCh
=
p
;
unsigned
long
flags
;
ip2trace
(
CHANN
,
ITRC_INPUT
,
21
,
0
);
...
...
@@ -1445,8 +1445,7 @@ do_input( i2ChanStrPtr pCh )
}
// code duplicated from n_tty (ldisc)
static
inline
void
isig
(
int
sig
,
struct
tty_struct
*
tty
,
int
flush
)
static
inline
void
isig
(
int
sig
,
struct
tty_struct
*
tty
,
int
flush
)
{
if
(
tty
->
pgrp
>
0
)
kill_pg
(
tty
->
pgrp
,
sig
,
1
);
...
...
@@ -1457,9 +1456,9 @@ isig(int sig, struct tty_struct *tty, int flush)
}
}
static
inline
void
do_status
(
i2ChanStrPtr
pCh
)
static
void
do_status
(
void
*
p
)
{
i2ChanStrPtr
pCh
=
p
;
int
status
;
status
=
i2GetStatus
(
pCh
,
(
I2_BRK
|
I2_PAR
|
I2_FRA
|
I2_OVR
)
);
...
...
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