From: Bart Van Assche <bvanassche@acm.org> To: Alan Stern <stern@rowland.harvard.edu>, martin.petersen@oracle.com Cc: Can Guo <cang@codeaurora.org>, linux-scsi@vger.kernel.org, linux-block@vger.kernel.org Subject: Re: [PATCH v2] SCSI and block: Simplify resume handling Date: Sun, 5 Jul 2020 19:41:07 -0700 [thread overview] Message-ID: <9e824700-dfd1-5d71-5e91-833c35ea55eb@acm.org> (raw) In-Reply-To: <20200701183718.GA507293@rowland.harvard.edu> On 2020-07-01 11:37, Alan Stern wrote: > void blk_post_runtime_resume(struct request_queue *q, int err) > { > - if (!q->dev) > - return; > - > - spin_lock_irq(&q->queue_lock); > if (!err) { > - q->rpm_status = RPM_ACTIVE; > - pm_runtime_mark_last_busy(q->dev); > - pm_request_autosuspend(q->dev); > - } else { > + blk_set_runtime_active(q); > + } else if (q->dev) { > + spin_lock_irq(&q->queue_lock); > q->rpm_status = RPM_SUSPENDED; > + spin_unlock_irq(&q->queue_lock); > } > - spin_unlock_irq(&q->queue_lock); > - > - if (!err) > - blk_clear_pm_only(q); > } > EXPORT_SYMBOL(blk_post_runtime_resume); I'd like to keep the if (!q->dev) check at the start of the function instead of moving it to the middle of the function to keep the symmetry with the existing runtime power management functions in the same source file. > void blk_set_runtime_active(struct request_queue *q) > { > if (q->dev) { > + int old_status; > + > spin_lock_irq(&q->queue_lock); > + old_status = q->rpm_status; > q->rpm_status = RPM_ACTIVE; > pm_runtime_mark_last_busy(q->dev); > pm_request_autosuspend(q->dev); > spin_unlock_irq(&q->queue_lock); > + > + if (old_status != RPM_ACTIVE) > + blk_clear_pm_only(q); > } > } Since this function is being modified, please change the if (q->dev) into if (!q->dev) return since returning early is the recommended kernel coding style. Thanks, Bart.
next prev parent reply other threads:[~2020-07-06 2:41 UTC|newest] Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-07-01 18:37 Alan Stern 2020-07-06 2:41 ` Bart Van Assche [this message] 2020-07-06 15:14 ` [PATCH v3] " Alan Stern 2020-07-09 3:29 ` Bart Van Assche 2020-07-21 3:01 ` Martin K. Petersen 2020-07-23 3:53 ` Bart Van Assche 2020-07-25 2:50 ` Martin K. Petersen 2020-07-22 1:46 ` [PATCH v2] " Can Guo
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=9e824700-dfd1-5d71-5e91-833c35ea55eb@acm.org \ --to=bvanassche@acm.org \ --cc=cang@codeaurora.org \ --cc=linux-block@vger.kernel.org \ --cc=linux-scsi@vger.kernel.org \ --cc=martin.petersen@oracle.com \ --cc=stern@rowland.harvard.edu \ --subject='Re: [PATCH v2] SCSI and block: Simplify resume handling' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.