[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAA9_cme13jSvWyBHZb7maRHzzDyw7t6EmwyWZxvrCnQY1BKrTw@mail.gmail.com>
Date: Mon, 19 Aug 2013 02:36:21 -0700
From: Dan Williams <djbw@...com>
To: Brice Goglin <Brice.Goglin@...ia.fr>
Cc: Vinod Koul <vinod.koul@...el.com>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: dmaengine: make dma_channel_rebalance() NUMA aware
> + for_each_online_cpu(cpu)
> + per_cpu_ptr(channel_table[cap], cpu)->chan
> + = min_chan(cap, cpu);
...this line-wrap strikes me weird. I think we can afford a few extra
lines and do:
for_each_online_cpu(cpu) {
chan = min_chan(cap, cpu);
per_cpu_ptr(channel_table[cap], cpu)->chan = chan;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists