Lines Matching refs:flags
70 __u64 flags; member
185 std::string flags; in simple_daemon() local
186 if (msg.flags & DM_USER_REQ_MAP_FLAG_SYNC) { in simple_daemon()
187 if (!flags.empty()) flags += "|"; in simple_daemon()
188 flags += "S"; in simple_daemon()
190 if (msg.flags & DM_USER_REQ_MAP_FLAG_META) { in simple_daemon()
191 if (!flags.empty()) flags += "|"; in simple_daemon()
192 flags += "M"; in simple_daemon()
194 if (msg.flags & DM_USER_REQ_MAP_FLAG_FUA) { in simple_daemon()
195 if (!flags.empty()) flags += "|"; in simple_daemon()
196 flags += "FUA"; in simple_daemon()
198 if (msg.flags & DM_USER_REQ_MAP_FLAG_PREFLUSH) { in simple_daemon()
199 if (!flags.empty()) flags += "|"; in simple_daemon()
200 flags += "F"; in simple_daemon()
203 std::cerr << "dmuserd: Got " << type << " request " << flags << " for sector " in simple_daemon()
214 if (msg.flags & DM_USER_REQ_MAP_FLAG_PREFLUSH || in simple_daemon()
215 msg.flags & DM_USER_REQ_MAP_FLAG_FUA) { in simple_daemon()
231 if (msg.flags & DM_USER_REQ_MAP_FLAG_FUA) { in simple_daemon()