• Home
  • Raw
  • Download

Lines Matching refs:opf

376 	typeof(bio->bi_opf) opf = bio->bi_opf & ~REQ_OP_MASK;  in bio_flags_to_user_flags()  local
378 if (opf & REQ_FAILFAST_DEV) { in bio_flags_to_user_flags()
379 opf &= ~REQ_FAILFAST_DEV; in bio_flags_to_user_flags()
383 if (opf & REQ_FAILFAST_TRANSPORT) { in bio_flags_to_user_flags()
384 opf &= ~REQ_FAILFAST_TRANSPORT; in bio_flags_to_user_flags()
388 if (opf & REQ_FAILFAST_DRIVER) { in bio_flags_to_user_flags()
389 opf &= ~REQ_FAILFAST_DRIVER; in bio_flags_to_user_flags()
393 if (opf & REQ_SYNC) { in bio_flags_to_user_flags()
394 opf &= ~REQ_SYNC; in bio_flags_to_user_flags()
398 if (opf & REQ_META) { in bio_flags_to_user_flags()
399 opf &= ~REQ_META; in bio_flags_to_user_flags()
403 if (opf & REQ_PRIO) { in bio_flags_to_user_flags()
404 opf &= ~REQ_PRIO; in bio_flags_to_user_flags()
408 if (opf & REQ_NOMERGE) { in bio_flags_to_user_flags()
409 opf &= ~REQ_NOMERGE; in bio_flags_to_user_flags()
413 if (opf & REQ_IDLE) { in bio_flags_to_user_flags()
414 opf &= ~REQ_IDLE; in bio_flags_to_user_flags()
418 if (opf & REQ_INTEGRITY) { in bio_flags_to_user_flags()
419 opf &= ~REQ_INTEGRITY; in bio_flags_to_user_flags()
423 if (opf & REQ_FUA) { in bio_flags_to_user_flags()
424 opf &= ~REQ_FUA; in bio_flags_to_user_flags()
428 if (opf & REQ_PREFLUSH) { in bio_flags_to_user_flags()
429 opf &= ~REQ_PREFLUSH; in bio_flags_to_user_flags()
433 if (opf & REQ_RAHEAD) { in bio_flags_to_user_flags()
434 opf &= ~REQ_RAHEAD; in bio_flags_to_user_flags()
438 if (opf & REQ_BACKGROUND) { in bio_flags_to_user_flags()
439 opf &= ~REQ_BACKGROUND; in bio_flags_to_user_flags()
443 if (opf & REQ_NOWAIT) { in bio_flags_to_user_flags()
444 opf &= ~REQ_NOWAIT; in bio_flags_to_user_flags()
448 if (opf & REQ_NOUNMAP) { in bio_flags_to_user_flags()
449 opf &= ~REQ_NOUNMAP; in bio_flags_to_user_flags()
453 if (unlikely(opf)) { in bio_flags_to_user_flags()
454 pr_warn("unsupported BIO type %x\n", opf); in bio_flags_to_user_flags()