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
d8ccf29a
Commit
d8ccf29a
authored
Nov 23, 2007
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Import 2.3.44pre7
parent
562b2925
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
103 additions
and
112 deletions
+103
-112
arch/i386/kernel/i8259.c
arch/i386/kernel/i8259.c
+1
-1
drivers/net/3c527.c
drivers/net/3c527.c
+1
-1
drivers/scsi/st.c
drivers/scsi/st.c
+101
-110
No files found.
arch/i386/kernel/i8259.c
View file @
d8ccf29a
...
...
@@ -384,7 +384,7 @@ static struct irqaction irq2 = { no_action, 0, 0, "cascade", NULL, NULL};
#endif
void
init_ISA_irqs
(
void
)
void
__init
init_ISA_irqs
(
void
)
{
int
i
;
...
...
drivers/net/3c527.c
View file @
d8ccf29a
...
...
@@ -1156,7 +1156,7 @@ static void mc32_interrupt(int irq, void *dev_id, struct pt_regs * regs)
basically a FIFO queue of buffers matching
the card ring */
lp
->
net_stats
.
tx_bytes
+=
lp
->
tx_skb
[
lp
->
tx_skb_top
]
->
len
;
dev_kfree_skb
(
lp
->
tx_skb
[
lp
->
tx_skb_top
]);
dev_kfree_skb
_irq
(
lp
->
tx_skb
[
lp
->
tx_skb_top
]);
lp
->
tx_skb
[
lp
->
tx_skb_top
]
=
NULL
;
lp
->
tx_skb_top
++
;
lp
->
tx_skb_top
&=
(
TX_RING_MAX
-
1
);
...
...
drivers/scsi/st.c
View file @
d8ccf29a
This diff is collapsed.
Click to expand it.
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