From: Pavel Machek <pavel@ucw.cz>
To: Christian Thaeter <ct@pipapo.org>
Cc: linux-kernel@vger.kernel.org, eric.piel@tremplin-utc.net
Subject: Re: [PATCH] hpfall.c improvements, thoughts
Date: Wed, 25 Mar 2009 22:33:46 +0100 [thread overview]
Message-ID: <20090325213345.GD6708@elf.ucw.cz> (raw)
In-Reply-To: <49CAA1DF.8060109@pipapo.org>
Hi!
> Some conversation I had with Pavel,
>
> imo the example code should be at least barely useable as in not causing
> harm like I sketched in (1.). Maybe someone else picks that up and
> improves it later on. Patch at the end, quite sketchy and imature as it
> doesn't check for errors, but certainly better than before.
Thanks. Acked-by: Pavel Machek <pavel@ucw.cz>
Pavel
> Signed-off-by: Christian Thaeter <ct@pipapo.org>
> ---
>
> diff --git a/Documentation/hwmon/hpfall.c b/Documentation/hwmon/hpfall.c
> index bbea1cc..f3cde67 100644
> --- a/Documentation/hwmon/hpfall.c
> +++ b/Documentation/hwmon/hpfall.c
> @@ -16,6 +16,8 @@
> #include <stdint.h>
> #include <errno.h>
> #include <signal.h>
> +#include <sys/mman.h>
> +#include <sched.h>
>
> void write_int(char *path, int i)
> {
> @@ -63,6 +65,7 @@ void ignore_me(void)
> int main(int argc, char* argv[])
> {
> int fd, ret;
> + struct sched_param param;
>
> fd = open("/dev/freefall", O_RDONLY);
> if (fd < 0) {
> @@ -70,7 +73,12 @@ int main(int argc, char* argv[])
> return EXIT_FAILURE;
> }
>
> - signal(SIGALRM, ignore_me);
> + daemon(0,0);
> + param.sched_priority = sched_get_priority_max(SCHED_FIFO);
> + sched_setscheduler(0, SCHED_FIFO, ¶m);
> + mlockall(MCL_CURRENT|MCL_FUTURE);
> +
> + signal(SIGALRM, ignore_me);
>
> for (;;) {
> unsigned char count;
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
next prev parent reply other threads:[~2009-03-25 21:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <49C8F338.7030901@pipapo.org>
[not found] ` <20090324211555.GA24172@elf.ucw.cz>
2009-03-25 21:27 ` [PATCH] hpfall.c improvements, thoughts Christian Thaeter
2009-03-25 21:33 ` Pavel Machek [this message]
2009-05-20 21:04 ` Éric Piel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090325213345.GD6708@elf.ucw.cz \
--to=pavel@ucw.cz \
--cc=ct@pipapo.org \
--cc=eric.piel@tremplin-utc.net \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox