This fixes a regression introduced in: commit 7a4ea5664edba98bff28adec3a9c3cfb5763a495 "chrt: add control struct" Previously (and as documented in the manpage) the default policy was SCHED_RR. Now it's implicitly SCHED_OTHER (0) as the value is not initialized explicitly anymore. Test-command: chrt 90 echo hello Reported-by: Patrick Pelissier <patrick.pelissier@xxxxxxxxx> Addresses: http://bugs.debian.org/846572 Signed-off-by: Andreas Henriksson <andreas@xxxxxxxx> --- schedutils/chrt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schedutils/chrt.c b/schedutils/chrt.c index a861d9f..73d1ffa 100644 --- a/schedutils/chrt.c +++ b/schedutils/chrt.c @@ -409,7 +409,7 @@ static void set_sched(struct chrt_ctl *ctl) int main(int argc, char **argv) { - struct chrt_ctl _ctl = { .pid = -1 }, *ctl = &_ctl; + struct chrt_ctl _ctl = { .pid = -1, .policy = SCHED_RR }, *ctl = &_ctl; int c; static const struct option longopts[] = { -- 2.10.2 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html