scsi: ufs: core: Rely on the block layer for setting RQF_PM
authorBart Van Assche <bvanassche@acm.org>
Fri, 10 Feb 2023 19:32:57 +0000 (11:32 -0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Wed, 22 Feb 2023 03:00:51 +0000 (22:00 -0500)
commit93bc4a5d00e472003ae983bb21febd2519a64f62
tree51afbf201d716917de2917c3c93f3c0fac83d5dc
parent35cd2f5542df569122d48caf606b972642012c50
scsi: ufs: core: Rely on the block layer for setting RQF_PM

Do not set RQF_PM explicitly since scsi_alloc_request() sets it indirectly
if BLK_MQ_REQ_PM is set. The call chain for the code that sets RQF_PM is as
follows:

    scsi_alloc_request()
      blk_mq_alloc_request()
        __blk_mq_alloc_requests()
          blk_mq_rq_ctx_init()
            if (data->flags & BLK_MQ_REQ_PM)
              data->rq_flags |= RQF_PM;

Link: https://lore.kernel.org/r/20230210193258.4004923-3-bvanassche@acm.org
Cc: Mike Christie <michael.christie@oracle.com>
Cc: John Garry <john.g.garry@oracle.com>
Reviewed-by: John Garry <john.g.garry@oracle.com>
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/ufs/core/ufshcd.c