loop.c: decode LOOP_SET_DIRECT_IO

* loop.c (loop_ioctl) [LOOP_SET_DIRECT_IO] : Handle LOOP_SET_DIRECT_IO.
This commit is contained in:
Дмитрий Левин 2016-05-29 22:58:56 +00:00
parent b7166a6f28
commit 4b9fa902d2

6
loop.c
View File

@ -187,6 +187,12 @@ loop_ioctl(struct tcb *tcp, const unsigned int code, long arg)
break;
#endif
#ifdef LOOP_SET_DIRECT_IO
case LOOP_SET_DIRECT_IO:
tprintf(", %lu", arg);
break;
#endif
default:
return RVAL_DECODED;
}