2005-02-26 16:23:12

by P.Manohar

[permalink] [raw]
Subject: how to use schedule_work()


hai all,
I want to call call_usermodehelper() from schedule_work() to run the
user program in the process context. Can u please tell me how to call
schedule_work(), plz give any reference manual for that.

Any help appreciated.




Thanks&Regards,
KernelNewbie.


2005-02-26 16:59:23

by Parag Warudkar

[permalink] [raw]
Subject: Re: how to use schedule_work()

>
> hai all,
> I want to call call_usermodehelper() from schedule_work() to run the
> user program in the process context. Can u please tell me how to call
> schedule_work(), plz give any reference manual for that.
>
Download cscope from cscope.sourceforge.net - The site has a good tutorial on using it with linux kernel. (It's a source code searching tool - you can find for example, all functions that call a particular function and so on.) I find it very useful when you want to understand things from source code.

Then find for schedule_work, look into the source where it is used and see if you can comprehend it that way.

In essence - you need to setup and initialize a struct work_struct (this cannot be on a function local stack since callers stack will not be available when the work is executed) fill it with function to be called and arguments to be passed and then call schedule_work from say an interrupt.

Parag



2005-02-26 17:07:06

by P.Manohar

[permalink] [raw]
Subject: Re: how to use schedule_work()

hai,
Thanks for the information.






Thanks&Regards,
KernelNewbie.

eb 2005, Parag Warudkar wrote:

>>
>> hai all,
>> I want to call call_usermodehelper() from schedule_work() to run the
>> user program in the process context. Can u please tell me how to call
>> schedule_work(), plz give any reference manual for that.
>>
> Download cscope from cscope.sourceforge.net - The site has a good tutorial on using it with linux kernel. (It's a source code searching tool - you can find for example, all functions that call a particular function and so on.) I find it very useful when you want to understand things from source code.
>
> Then find for schedule_work, look into the source where it is used and see if you can comprehend it that way.
>
> In essence - you need to setup and initialize a struct work_struct (this cannot be on a function local stack since callers stack will not be available when the work is executed) fill it with function to be called and arguments to be passed and then call schedule_work from say an interrupt.
>
> Parag
>
>
>

2005-02-26 17:19:21

by Vicente Feito

[permalink] [raw]
Subject: Re: how to use schedule_work()

This is for workqueues, it includes schedule_work() and how to call it
http://lwn.net/Articles/23634/

Vicente

2005-02-26 17:26:29

by P.Manohar

[permalink] [raw]
Subject: Re: how to use schedule_work()

hai,
Thanks for information, I have already seen that material.
If you find any more info regarding that plz send it to me.





Thanks&Regards,
KernelNewbie.



On Sat, 26 Feb 2005, Vicente Feito wrote:

> This is for workqueues, it includes schedule_work() and how to call it
> http://lwn.net/Articles/23634/
>
> Vicente
>