* Re: workqueue: inline trivial wrappers
[not found] <20130430023146.8F351660923@gitolite.kernel.org>
@ 2013-05-06 14:44 ` Marc Dionne
2013-05-06 18:42 ` Tejun Heo
0 siblings, 1 reply; 3+ messages in thread
From: Marc Dionne @ 2013-05-06 14:44 UTC (permalink / raw)
To: Tejun Heo, Linux Kernel Mailing List
On Mon, Apr 29, 2013 at 10:31 PM, Linux Kernel Mailing List
<linux-kernel@vger.kernel.org> wrote:
> Gitweb: http://git.kernel.org/linus/;a=commit;h=8425e3d5bdbe8e741d2c73cf3189ed59b4038b84
> Commit: 8425e3d5bdbe8e741d2c73cf3189ed59b4038b84
> Parent: 611c92a0203091bb022edec7e2d8b765fe148622
> Author: Tejun Heo <tj@kernel.org>
> AuthorDate: Wed Mar 13 16:51:36 2013 -0700
> Committer: Tejun Heo <tj@kernel.org>
> CommitDate: Wed Mar 13 16:51:36 2013 -0700
>
> workqueue: inline trivial wrappers
>
> There's no reason to make these trivial wrappers full (exported)
> functions. Inline the followings.
>
> queue_work()
> queue_delayed_work()
> mod_delayed_work()
> schedule_work_on()
> schedule_work()
> schedule_delayed_work_on()
> schedule_delayed_work()
> keventd_up()
>
> Signed-off-by: Tejun Heo <tj@kernel.org>
Hi Tejun,
This commit has the side effect of making some functions
EXPORT_SYMBOL_GPL that had been previously exported with EXPORT_SYMBOL
for a long time, such as schedule_work(). This is used by OpenAFS and
probably other out of tree modules. Past exchanges on this list (ex:
http://marc.info/?l=linux-fsdevel&m=123550631318910) suggest the
license requirements for existing interfaces shouldn't change, at
least without providing an alternate means of getting the same
functionality. Any thoughts on whether this can be adjusted within
the current release cycle?
Thanks,
Marc
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: workqueue: inline trivial wrappers
2013-05-06 14:44 ` workqueue: inline trivial wrappers Marc Dionne
@ 2013-05-06 18:42 ` Tejun Heo
2013-05-06 22:03 ` Marc Dionne
0 siblings, 1 reply; 3+ messages in thread
From: Tejun Heo @ 2013-05-06 18:42 UTC (permalink / raw)
To: Marc Dionne; +Cc: Linux Kernel Mailing List
Hello,
On Mon, May 06, 2013 at 10:44:58AM -0400, Marc Dionne wrote:
> On Mon, Apr 29, 2013 at 10:31 PM, Linux Kernel Mailing List
> <linux-kernel@vger.kernel.org> wrote:
> > Gitweb: http://git.kernel.org/linus/;a=commit;h=8425e3d5bdbe8e741d2c73cf3189ed59b4038b84
> > Commit: 8425e3d5bdbe8e741d2c73cf3189ed59b4038b84
> > Parent: 611c92a0203091bb022edec7e2d8b765fe148622
> > Author: Tejun Heo <tj@kernel.org>
> > AuthorDate: Wed Mar 13 16:51:36 2013 -0700
> > Committer: Tejun Heo <tj@kernel.org>
> > CommitDate: Wed Mar 13 16:51:36 2013 -0700
> >
> > workqueue: inline trivial wrappers
> >
> > There's no reason to make these trivial wrappers full (exported)
> > functions. Inline the followings.
> >
> > queue_work()
> > queue_delayed_work()
> > mod_delayed_work()
> > schedule_work_on()
> > schedule_work()
> > schedule_delayed_work_on()
> > schedule_delayed_work()
> > keventd_up()
> >
> > Signed-off-by: Tejun Heo <tj@kernel.org>
>
> This commit has the side effect of making some functions
> EXPORT_SYMBOL_GPL that had been previously exported with EXPORT_SYMBOL
> for a long time, such as schedule_work(). This is used by OpenAFS and
> probably other out of tree modules. Past exchanges on this list (ex:
> http://marc.info/?l=linux-fsdevel&m=123550631318910) suggest the
> license requirements for existing interfaces shouldn't change, at
> least without providing an alternate means of getting the same
> functionality. Any thoughts on whether this can be adjusted within
> the current release cycle?
Hah, so schedule_work() was EXPORT_SYMBOL() and queue_work*() were
EXPORT_SYMBOL_GPL()? It'd be rather silly to avoid inlining those
wrappers for license reasons. Can you please send a patch changing
the necessary functions to EXPORT_SYMBOL()?
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: workqueue: inline trivial wrappers
2013-05-06 18:42 ` Tejun Heo
@ 2013-05-06 22:03 ` Marc Dionne
0 siblings, 0 replies; 3+ messages in thread
From: Marc Dionne @ 2013-05-06 22:03 UTC (permalink / raw)
To: Tejun Heo; +Cc: Linux Kernel Mailing List
On Mon, May 6, 2013 at 2:42 PM, Tejun Heo <tj@kernel.org> wrote:
> Hello,
>
> On Mon, May 06, 2013 at 10:44:58AM -0400, Marc Dionne wrote:
>> On Mon, Apr 29, 2013 at 10:31 PM, Linux Kernel Mailing List
>> <linux-kernel@vger.kernel.org> wrote:
>> > Gitweb: http://git.kernel.org/linus/;a=commit;h=8425e3d5bdbe8e741d2c73cf3189ed59b4038b84
>> > Commit: 8425e3d5bdbe8e741d2c73cf3189ed59b4038b84
>> > Parent: 611c92a0203091bb022edec7e2d8b765fe148622
>> > Author: Tejun Heo <tj@kernel.org>
>> > AuthorDate: Wed Mar 13 16:51:36 2013 -0700
>> > Committer: Tejun Heo <tj@kernel.org>
>> > CommitDate: Wed Mar 13 16:51:36 2013 -0700
>> >
>> > workqueue: inline trivial wrappers
>> >
>> > There's no reason to make these trivial wrappers full (exported)
>> > functions. Inline the followings.
>> >
>> > queue_work()
>> > queue_delayed_work()
>> > mod_delayed_work()
>> > schedule_work_on()
>> > schedule_work()
>> > schedule_delayed_work_on()
>> > schedule_delayed_work()
>> > keventd_up()
>> >
>> > Signed-off-by: Tejun Heo <tj@kernel.org>
>>
>> This commit has the side effect of making some functions
>> EXPORT_SYMBOL_GPL that had been previously exported with EXPORT_SYMBOL
>> for a long time, such as schedule_work(). This is used by OpenAFS and
>> probably other out of tree modules. Past exchanges on this list (ex:
>> http://marc.info/?l=linux-fsdevel&m=123550631318910) suggest the
>> license requirements for existing interfaces shouldn't change, at
>> least without providing an alternate means of getting the same
>> functionality. Any thoughts on whether this can be adjusted within
>> the current release cycle?
>
> Hah, so schedule_work() was EXPORT_SYMBOL() and queue_work*() were
> EXPORT_SYMBOL_GPL()? It'd be rather silly to avoid inlining those
> wrappers for license reasons. Can you please send a patch changing
> the necessary functions to EXPORT_SYMBOL()?
As a follow up I sent a patch as you suggested to convert the needed
symbols which are system_wq, queue_work_on and queue_delayed_work_on.
Of course the goal is not to make direct use of those symbols, but
rather to make schedule_work() available again, and that's one way of
accomplishing that.
Thanks,
Marc
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-05-06 22:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20130430023146.8F351660923@gitolite.kernel.org>
2013-05-06 14:44 ` workqueue: inline trivial wrappers Marc Dionne
2013-05-06 18:42 ` Tejun Heo
2013-05-06 22:03 ` Marc Dionne
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®