On Thu, Apr 17, 2014 at 12:05:19PM +0200, Peter Zijlstra wrote:
> +static inline void iowait_start(struct rq *rq)
> +{
> +     raw_spin_lock(&rq->iowait_lock);
> +     rq->nr_iowait++;
> +     raw_spin_unlock(&rq->iowait_lock);
> +     current->in_iowait = 1;
> +}
> +
> +static inline void iowait_stop(struct rq *rq)
> +{
> +     current->in_iowait = 0;
> +     raw_spin_lock(&rq->iowait_lock);
> +     rq->nr_iowait--;
> +     if (!rq->nr_iowait && rq != this_rq())
> +             rq->last_iowait = ktime_get();
> +     raw_spin_unlock(&rq->iowait_lock);
> +}

We could actually use lockref here...
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to