Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
E-EXK4 - Operating System Group
projects
Linux
Commits
ae90dd5d
Commit
ae90dd5d
authored
18 years ago
by
Dave Jones
Browse files
Options
Downloads
Patches
Plain Diff
Move workqueue exports to where the functions are defined.
Signed-off-by:
Dave Jones
<
davej@redhat.com
>
parent
ffac80e9
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
kernel/workqueue.c
+10
-11
10 additions, 11 deletions
kernel/workqueue.c
with
10 additions
and
11 deletions
kernel/workqueue.c
+
10
−
11
View file @
ae90dd5d
...
...
@@ -114,6 +114,7 @@ int fastcall queue_work(struct workqueue_struct *wq, struct work_struct *work)
put_cpu
();
return
ret
;
}
EXPORT_SYMBOL_GPL
(
queue_work
);
static
void
delayed_work_timer_fn
(
unsigned
long
__data
)
{
...
...
@@ -147,6 +148,7 @@ int fastcall queue_delayed_work(struct workqueue_struct *wq,
}
return
ret
;
}
EXPORT_SYMBOL_GPL
(
queue_delayed_work
);
int
queue_delayed_work_on
(
int
cpu
,
struct
workqueue_struct
*
wq
,
struct
work_struct
*
work
,
unsigned
long
delay
)
...
...
@@ -168,6 +170,7 @@ int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
}
return
ret
;
}
EXPORT_SYMBOL_GPL
(
queue_delayed_work_on
);
static
void
run_workqueue
(
struct
cpu_workqueue_struct
*
cwq
)
{
...
...
@@ -302,6 +305,7 @@ void fastcall flush_workqueue(struct workqueue_struct *wq)
unlock_cpu_hotplug
();
}
}
EXPORT_SYMBOL_GPL
(
flush_workqueue
);
static
struct
task_struct
*
create_workqueue_thread
(
struct
workqueue_struct
*
wq
,
int
cpu
)
...
...
@@ -379,6 +383,7 @@ struct workqueue_struct *__create_workqueue(const char *name,
}
return
wq
;
}
EXPORT_SYMBOL_GPL
(
__create_workqueue
);
static
void
cleanup_workqueue_thread
(
struct
workqueue_struct
*
wq
,
int
cpu
)
{
...
...
@@ -416,6 +421,7 @@ void destroy_workqueue(struct workqueue_struct *wq)
free_percpu
(
wq
->
cpu_wq
);
kfree
(
wq
);
}
EXPORT_SYMBOL_GPL
(
destroy_workqueue
);
static
struct
workqueue_struct
*
keventd_wq
;
...
...
@@ -423,17 +429,20 @@ int fastcall schedule_work(struct work_struct *work)
{
return
queue_work
(
keventd_wq
,
work
);
}
EXPORT_SYMBOL
(
schedule_work
);
int
fastcall
schedule_delayed_work
(
struct
work_struct
*
work
,
unsigned
long
delay
)
{
return
queue_delayed_work
(
keventd_wq
,
work
,
delay
);
}
EXPORT_SYMBOL
(
schedule_delayed_work
);
int
schedule_delayed_work_on
(
int
cpu
,
struct
work_struct
*
work
,
unsigned
long
delay
)
{
return
queue_delayed_work_on
(
cpu
,
keventd_wq
,
work
,
delay
);
}
EXPORT_SYMBOL
(
schedule_delayed_work_on
);
/**
* schedule_on_each_cpu - call a function on each online CPU from keventd
...
...
@@ -470,6 +479,7 @@ void flush_scheduled_work(void)
{
flush_workqueue
(
keventd_wq
);
}
EXPORT_SYMBOL
(
flush_scheduled_work
);
/**
* cancel_rearming_delayed_workqueue - reliably kill off a delayed
...
...
@@ -626,14 +636,3 @@ void init_workqueues(void)
BUG_ON
(
!
keventd_wq
);
}
EXPORT_SYMBOL_GPL
(
__create_workqueue
);
EXPORT_SYMBOL_GPL
(
queue_work
);
EXPORT_SYMBOL_GPL
(
queue_delayed_work
);
EXPORT_SYMBOL_GPL
(
queue_delayed_work_on
);
EXPORT_SYMBOL_GPL
(
flush_workqueue
);
EXPORT_SYMBOL_GPL
(
destroy_workqueue
);
EXPORT_SYMBOL
(
schedule_work
);
EXPORT_SYMBOL
(
schedule_delayed_work
);
EXPORT_SYMBOL
(
schedule_delayed_work_on
);
EXPORT_SYMBOL
(
flush_scheduled_work
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment