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
nexedi
linux
Commits
e4086edc
Commit
e4086edc
authored
May 30, 2002
by
Rusty Russell
Committed by
Linus Torvalds
May 30, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] softirq.c per_cpu fix
GCC3.1 apparently gets confused about uninitialized sections
parent
c583dc59
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
kernel/softirq.c
kernel/softirq.c
+4
-2
No files found.
kernel/softirq.c
View file @
e4086edc
...
...
@@ -151,8 +151,10 @@ struct tasklet_head
struct
tasklet_struct
*
list
;
};
static
struct
tasklet_head
tasklet_vec
__per_cpu_data
;
static
struct
tasklet_head
tasklet_hi_vec
__per_cpu_data
;
/* Some compilers disobey section attribute on statics when not
initialized -- RR */
static
struct
tasklet_head
tasklet_vec
__per_cpu_data
=
{
NULL
};
static
struct
tasklet_head
tasklet_hi_vec
__per_cpu_data
=
{
NULL
};
void
__tasklet_schedule
(
struct
tasklet_struct
*
t
)
{
...
...
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