Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1200172 > unrolled thread
| Started by | tim.gardner@canonical.com |
|---|---|
| First post | 2015-08-04 19:30 +0200 |
| Last post | 2015-08-04 20:10 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 4.2-rc5] workqueue: Make flush_workqueue() available again to non GPL modules tim.gardner@canonical.com - 2015-08-04 19:30 +0200
Re: [PATCH 4.2-rc5] workqueue: Make flush_workqueue() available again to non GPL modules Tejun Heo <tj@kernel.org> - 2015-08-04 20:10 +0200
| From | tim.gardner@canonical.com |
|---|---|
| Date | 2015-08-04 19:30 +0200 |
| Subject | [PATCH 4.2-rc5] workqueue: Make flush_workqueue() available again to non GPL modules |
| Message-ID | <pTOch-kz-3@gated-at.bofh.it> |
From: Tim Gardner <tim.gardner@canonical.com>
Commit 37b1ef31a568fc02e53587620226e5f3c66454c8 ("workqueue: move
flush_scheduled_work() to workqueue.h") moved the exported non GPL
flush_scheduled_work() from a function to an inline wrapper.
Unfortunately, it directly calls flush_workqueue() which is a GPL function.
This has the effect of changing the licensing requirement for this function
and makes it unavailable to non GPL modules.
See commit ad7b1f841f8a54c6d61ff181451f55b68175e15a ("workqueue: Make
schedule_work() available again to non GPL modules") for precedent.
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
---
kernel/workqueue.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 4c4f061..a413acb 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -2614,7 +2614,7 @@ void flush_workqueue(struct workqueue_struct *wq)
out_unlock:
mutex_unlock(&wq->mutex);
}
-EXPORT_SYMBOL_GPL(flush_workqueue);
+EXPORT_SYMBOL(flush_workqueue);
/**
* drain_workqueue - drain a workqueue
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2015-08-04 20:10 +0200 |
| Subject | Re: [PATCH 4.2-rc5] workqueue: Make flush_workqueue() available again to non GPL modules |
| Message-ID | <pTOP0-1jD-15@gated-at.bofh.it> |
| In reply to | #1200172 |
On Tue, Aug 04, 2015 at 11:26:04AM -0600, tim.gardner@canonical.com wrote:
> From: Tim Gardner <tim.gardner@canonical.com>
>
> Commit 37b1ef31a568fc02e53587620226e5f3c66454c8 ("workqueue: move
> flush_scheduled_work() to workqueue.h") moved the exported non GPL
> flush_scheduled_work() from a function to an inline wrapper.
> Unfortunately, it directly calls flush_workqueue() which is a GPL function.
> This has the effect of changing the licensing requirement for this function
> and makes it unavailable to non GPL modules.
>
> See commit ad7b1f841f8a54c6d61ff181451f55b68175e15a ("workqueue: Make
> schedule_work() available again to non GPL modules") for precedent.
>
> Cc: Tejun Heo <tj@kernel.org>
> Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
Applied to wq/for-4.3.
Thanks.
--
tejun
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web