From: Dmitry V. Levin Date: Sun, 29 May 2016 22:58:56 +0000 (+0000) Subject: loop.c: decode LOOP_SET_DIRECT_IO X-Git-Tag: v4.12~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b9fa902d2176920a437faec3dc85cb1fac43cd5;p=strace loop.c: decode LOOP_SET_DIRECT_IO * loop.c (loop_ioctl) [LOOP_SET_DIRECT_IO] : Handle LOOP_SET_DIRECT_IO. --- diff --git a/loop.c b/loop.c index ac092b50..2de33c5f 100644 --- a/loop.c +++ b/loop.c @@ -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; }