> -----Original Message----- > From: Jens Axboe [mailto:axboe@xxxxxxxxx] > Sent: Tuesday, July 12, 2011 1:31 PM > To: Jiang, Dave > Cc: Williams, Dan J; Foong, Annie; linux-scsi@xxxxxxxxxxxxxxx; linux- > kernel@xxxxxxxxxxxxxxx; Nadolski, Edmund; Skirvin, Jeffrey D > Subject: Re: rq_affinity doesn't seem to work? > > On 2011-07-12 21:03, Jiang, Dave wrote: > > Jens, > > I'm doing some performance tuning for the Intel isci SAS controller > > driver, and I noticed some interesting numbers with mpstat. Looking at > > the numbers it seems that rq_affinity is not moving the request > > completion to the request submission CPU. Using fio to saturate the > > system with 512B I/Os, I noticed that all I/Os are bound to the CPUs > > (CPUs 6 and 7) that service the hard irqs. I have put in a quick hack > > in the driver so that it records the CPU during request construction > > and then I try to steer the scsi->done() calls to the request CPUs. > > With this simple hack, mpstat shows that the soft irq contexts are now > > distributed. I observed significant performance increase. The iowait% > > gone from 30s and 40s to low single digit approaching 0. Any ideas > > what could be happening with the rq_affinity logic? I'm assuming > > rq_affinity should behave the way my hacked solution is behaving. This > > is running on an 8 core single CPU SandyBridge based system with > > hyper-threading turned off. The two MSIX interrupts on the controller > > are tied to CPU 6 and 7 respectively via /proc/irq/X/smp_affinity. I'm > > running fio with 8 SAS disks and 8 threads. > > It's probably the grouping, we need to do something about that. Does the > below patch make it behave as you expect? Yep that is it. 02:14:12 PM CPU %usr %nice %sys %iowait %irq %soft %steal %guest %idle 02:14:17 PM all 11.98 0.00 46.62 1.18 0.00 37.79 0.00 0.00 2.43 02:14:17 PM 0 15.43 0.00 55.31 0.00 0.00 29.26 0.00 0.00 0.00 02:14:17 PM 1 14.83 0.00 56.71 0.00 0.00 28.46 0.00 0.00 0.00 02:14:17 PM 2 14.80 0.00 56.00 0.00 0.00 29.20 0.00 0.00 0.00 02:14:17 PM 3 14.63 0.00 57.11 0.00 0.00 28.26 0.00 0.00 0.00 02:14:17 PM 4 14.80 0.00 57.60 0.00 0.00 27.60 0.00 0.00 0.00 02:14:17 PM 5 15.03 0.00 56.11 0.00 0.00 28.86 0.00 0.00 0.00 02:14:17 PM 6 3.79 0.00 20.16 5.99 0.00 59.68 0.00 0.00 10.38 02:14:17 PM 7 2.80 0.00 14.20 3.20 0.00 70.80 0.00 0.00 9.00 -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html