lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 19 Jun 2012 18:27:06 +0800
From:	Zheng Liu <gnehzuil.liu@...il.com>
To:	Sami Kerola <kerolasa@...il.com>
Cc:	Sami Kerola <kerolasa@....fi>, Jens Axboe <axboe@...nel.dk>,
	Rob Landley <rob@...dley.net>,
	Bernhard Voelker <mail@...nhard-voelker.de>,
	Zheng Liu <wenqing.lz@...bao.com>, linux-doc@...r.kernel.org,
	linux-kernel@...r.kernel.org, util-linux@...r.kernel.org
Subject: Re: [PATCH] docs: block: update ioprio.txt

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@....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@...nel.dk>
> CC: Rob Landley <rob@...dley.net>
> CC: Bernhard Voelker <mail@...nhard-voelker.de>
> CC: Zheng Liu <wenqing.lz@...bao.com>
> Signed-off-by: Sami Kerola <kerolasa@....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@...cle.com>
> -- 
> 1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ