strace/swapon.c
Eugene Syromyatnikov 39c77d45d0 swap: always print priority value
* swapon.c (SYS_FUNC(swapon)): Do not check for non-zero the value
of the prio variable in order to print it.
* tests/swap.c (main): Update expected output.
2016-12-01 00:05:09 +00:00

24 lines
408 B
C

#include "defs.h"
#include <sys/swap.h>
#include "xlat/swap_flags.h"
SYS_FUNC(swapon)
{
unsigned int flags = tcp->u_arg[1];
unsigned int prio = flags & SWAP_FLAG_PRIO_MASK;
flags &= ~SWAP_FLAG_PRIO_MASK;
printpath(tcp, tcp->u_arg[0]);
tprints(", ");
if (flags) {
printflags(swap_flags, flags, "SWAP_FLAG_???");
tprintf("|%u", prio);
} else {
tprintf("%u", prio);
}
return RVAL_DECODED;
}