From: Zheng Liu <gnehzuil.liu@gmail.com>
To: Sami Kerola <kerolasa@gmail.com>
Cc: Sami Kerola <kerolasa@iki.fi>, Jens Axboe <axboe@kernel.dk>,
Rob Landley <rob@landley.net>,
Bernhard Voelker <mail@bernhard-voelker.de>,
Zheng Liu <wenqing.lz@taobao.com>,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
util-linux@vger.kernel.org
Subject: Re: [PATCH] docs: block: update ioprio.txt
Date: Tue, 19 Jun 2012 18:27:06 +0800 [thread overview]
Message-ID: <20120619102706.GA9273@gmail.com> (raw)
In-Reply-To: <CAG27Bk2tXprRfMfYOVdWtwSbjw5Rw9Kxs6Wns+Gm65m3hoJawg@mail.gmail.com>
Hi Sami,
[You forgot to CC'd other developers and mailing list]
On Tue, Jun 19, 2012 at 10:54:41AM +0200, Sami Kerola wrote:
> Hi Zheng,
>
> Wouldn't a patch such as below be better?
Looks good to me. But, IMHO, if reader cannot access Internet, my patch
maybe is better for them. The original writer is not me. So I don't
understand the original idea that puts ionice source code in here. I
think that Jens can do the final decision.
Hi Jens,
What's your opintion about Sami's and my patch?
Regards,
Zheng
>
> From 800d7d46f8c1945d9c2e43912376c9b7d00a15ba Mon Sep 17 00:00:00 2001
> From: Sami Kerola <kerolasa@iki.fi>
> Date: Tue, 19 Jun 2012 10:52:06 +0200
> Subject: [PATCH] docs: block: update ioprio.txt
>
> Inform the ionice.c in ioprio.txt document is moved to util-linux
> package.
>
> CC: Jens Axboe <axboe@kernel.dk>
> CC: Rob Landley <rob@landley.net>
> CC: Bernhard Voelker <mail@bernhard-voelker.de>
> CC: Zheng Liu <wenqing.lz@taobao.com>
> Signed-off-by: Sami Kerola <kerolasa@iki.fi>
> ---
> Documentation/block/ioprio.txt | 126 ++--------------------------------------
> 1 file changed, 5 insertions(+), 121 deletions(-)
>
> diff --git a/Documentation/block/ioprio.txt b/Documentation/block/ioprio.txt
> index 8ed8c59..9ccd3f0 100644
> --- a/Documentation/block/ioprio.txt
> +++ b/Documentation/block/ioprio.txt
> @@ -57,127 +57,11 @@ For a running process, you can give the pid instead:
>
> will change pid 100 to run at the realtime scheduling class, at priority 2.
>
> ----> snip ionice.c tool <---
> -
> -#include <stdio.h>
> -#include <stdlib.h>
> -#include <errno.h>
> -#include <getopt.h>
> -#include <unistd.h>
> -#include <sys/ptrace.h>
> -#include <asm/unistd.h>
> -
> -extern int sys_ioprio_set(int, int, int);
> -extern int sys_ioprio_get(int, int);
> -
> -#if defined(__i386__)
> -#define __NR_ioprio_set 289
> -#define __NR_ioprio_get 290
> -#elif defined(__ppc__)
> -#define __NR_ioprio_set 273
> -#define __NR_ioprio_get 274
> -#elif defined(__x86_64__)
> -#define __NR_ioprio_set 251
> -#define __NR_ioprio_get 252
> -#elif defined(__ia64__)
> -#define __NR_ioprio_set 1274
> -#define __NR_ioprio_get 1275
> -#else
> -#error "Unsupported arch"
> -#endif
> -
> -static inline int ioprio_set(int which, int who, int ioprio)
> -{
> - return syscall(__NR_ioprio_set, which, who, ioprio);
> -}
> -
> -static inline int ioprio_get(int which, int who)
> -{
> - return syscall(__NR_ioprio_get, which, who);
> -}
> -
> -enum {
> - IOPRIO_CLASS_NONE,
> - IOPRIO_CLASS_RT,
> - IOPRIO_CLASS_BE,
> - IOPRIO_CLASS_IDLE,
> -};
> -
> -enum {
> - IOPRIO_WHO_PROCESS = 1,
> - IOPRIO_WHO_PGRP,
> - IOPRIO_WHO_USER,
> -};
> -
> -#define IOPRIO_CLASS_SHIFT 13
> -
> -const char *to_prio[] = { "none", "realtime", "best-effort", "idle", };
> -
> -int main(int argc, char *argv[])
> -{
> - int ioprio = 4, set = 0, ioprio_class = IOPRIO_CLASS_BE;
> - int c, pid = 0;
> -
> - while ((c = getopt(argc, argv, "+n:c:p:")) != EOF) {
> - switch (c) {
> - case 'n':
> - ioprio = strtol(optarg, NULL, 10);
> - set = 1;
> - break;
> - case 'c':
> - ioprio_class = strtol(optarg, NULL, 10);
> - set = 1;
> - break;
> - case 'p':
> - pid = strtol(optarg, NULL, 10);
> - break;
> - }
> - }
> -
> - switch (ioprio_class) {
> - case IOPRIO_CLASS_NONE:
> - ioprio_class = IOPRIO_CLASS_BE;
> - break;
> - case IOPRIO_CLASS_RT:
> - case IOPRIO_CLASS_BE:
> - break;
> - case IOPRIO_CLASS_IDLE:
> - ioprio = 7;
> - break;
> - default:
> - printf("bad prio class %d\n", ioprio_class);
> - return 1;
> - }
> -
> - if (!set) {
> - if (!pid && argv[optind])
> - pid = strtol(argv[optind], NULL, 10);
> -
> - ioprio = ioprio_get(IOPRIO_WHO_PROCESS, pid);
> -
> - printf("pid=%d, %d\n", pid, ioprio);
> -
> - if (ioprio == -1)
> - perror("ioprio_get");
> - else {
> - ioprio_class = ioprio >> IOPRIO_CLASS_SHIFT;
> - ioprio = ioprio & 0xff;
> - printf("%s: prio %d\n", to_prio[ioprio_class], ioprio);
> - }
> - } else {
> - if (ioprio_set(IOPRIO_WHO_PROCESS, pid, ioprio | ioprio_class <<
> IOPRIO_CLASS_SHIFT) == -1) {
> - perror("ioprio_set");
> - return 1;
> - }
> -
> - if (argv[optind])
> - execvp(argv[optind], &argv[optind]);
> - }
> -
> - return 0;
> -}
> -
> ----> snip ionice.c tool <---
> +Tool source code
> +----------------
>
> +Moved to util-linux package schedutils/ionice.c
> +
> +http://git.kernel.org/?p=utils/util-linux/util-linux.git;a=blob;f=schedutils/ionice.c
>
> March 11 2005, Jens Axboe <jens.axboe@oracle.com>
> --
> 1.7.9.5
next prev parent reply other threads:[~2012-06-19 10:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-19 8:51 [PATCH] docs: block: update ioprio.txt Zheng Liu
2012-06-19 10:19 ` Karel Zak
[not found] ` <CAG27Bk2tXprRfMfYOVdWtwSbjw5Rw9Kxs6Wns+Gm65m3hoJawg@mail.gmail.com>
2012-06-19 10:27 ` Zheng Liu [this message]
2012-06-21 4:50 ` Rob Landley
2012-06-21 6:50 ` Sami Kerola
2012-06-21 10:19 ` gnehzuil.lzheng
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=20120619102706.GA9273@gmail.com \
--to=gnehzuil.liu@gmail.com \
--cc=axboe@kernel.dk \
--cc=kerolasa@gmail.com \
--cc=kerolasa@iki.fi \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mail@bernhard-voelker.de \
--cc=rob@landley.net \
--cc=util-linux@vger.kernel.org \
--cc=wenqing.lz@taobao.com \
/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;
as well as URLs for NNTP newsgroup(s).