From: Greg KH <greg@kroah.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Mike Travis <travis@sgi.com>,
mingo@redhat.com, tglx@linutronix.de, hpa@zytor.com,
msalter@redhat.com, dyoung@redhat.com, riel@redhat.com,
peterz@infradead.org, mgorman@suse.de,
linux-kernel@vger.kernel.org, x86@kernel.org, linux-mm@kvack.org,
Alex Thorlton <athorlton@sgi.com>, Cliff Wickman <cpw@sgi.com>,
Russ Anderson <rja@sgi.com>
Subject: Re: [PATCH 0/2] x86: Speed up ioremap operations
Date: Fri, 29 Aug 2014 15:31:01 -0700 [thread overview]
Message-ID: <20140829223101.GA13583@kroah.com> (raw)
In-Reply-To: <20140829135200.636dec4a64e2668c2072d787@linux-foundation.org>
On Fri, Aug 29, 2014 at 01:52:00PM -0700, Andrew Morton wrote:
> On Fri, 29 Aug 2014 13:44:31 -0700 Mike Travis <travis@sgi.com> wrote:
>
> >
> >
> > On 8/29/2014 1:16 PM, Andrew Morton wrote:
> > > On Fri, 29 Aug 2014 14:53:28 -0500 Mike Travis <travis@sgi.com> wrote:
> > >
> > >>
> > >> We have a large university system in the UK that is experiencing
> > >> very long delays modprobing the driver for a specific I/O device.
> > >> The delay is from 8-10 minutes per device and there are 31 devices
> > >> in the system. This 4 to 5 hour delay in starting up those I/O
> > >> devices is very much a burden on the customer.
> > >>
> > >> There are two causes for requiring a restart/reload of the drivers.
> > >> First is periodic preventive maintenance (PM) and the second is if
> > >> any of the devices experience a fatal error. Both of these trigger
> > >> this excessively long delay in bringing the system back up to full
> > >> capability.
> > >>
> > >> The problem was tracked down to a very slow IOREMAP operation and
> > >> the excessively long ioresource lookup to insure that the user is
> > >> not attempting to ioremap RAM. These patches provide a speed up
> > >> to that function.
> > >>
> > >
> > > Really would prefer to have some quantitative testing results in here,
> > > as that is the entire point of the patchset. And it leaves the reader
> > > wondering "how much of this severe problem remains?".
> >
> > Okay, I have some results from testing. The modprobe time appears to
> > be affected quite a bit by previous activity on the ioresource list,
> > which I suspect is due to cache preloading. While the overall
> > improvement is impacted by other overhead of starting the devices,
> > this drastically improves the modprobe time.
> >
> > Also our system is considerably smaller so the percentages gained
> > will not be the same. Best case improvement with the modprobe
> > on our 20 device smallish system was from 'real 5m51.913s' to
> > 'real 0m18.275s'.
>
> Thanks, I slurped that into the changelog.
>
> > > Also, the -stable backport is a big ask, isn't it? It's arguably
> > > notabug and the affected number of machines is small.
> > >
> >
> > Ingo had suggested this. We are definitely pushing it to our distro
> > suppliers for our customers. Whether it's a big deal for smaller
> > systems is up in the air. Note that the customer system has 31 devices
> > on an SSI that includes a large number of other IB and SAS devices
> > as well as a number of nodes which all which have discontiguous memory
> > segments. I'm envisioning an ioresource list that numbers at least
> > several hundred entries. While that's somewhat indicative of typical
> > UV systems it is generally not that common otherwise.
> >
> > So I guess the -stable is merely a suggestion, not a request.
>
> Cc Greg for his thoughts!
Sounds like a good thing for stable.
thanks,
greg k-h
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
WARNING: multiple messages have this Message-ID (diff)
From: Greg KH <greg@kroah.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Mike Travis <travis@sgi.com>,
mingo@redhat.com, tglx@linutronix.de, hpa@zytor.com,
msalter@redhat.com, dyoung@redhat.com, riel@redhat.com,
peterz@infradead.org, mgorman@suse.de,
linux-kernel@vger.kernel.org, x86@kernel.org, linux-mm@kvack.org,
Alex Thorlton <athorlton@sgi.com>, Cliff Wickman <cpw@sgi.com>,
Russ Anderson <rja@sgi.com>
Subject: Re: [PATCH 0/2] x86: Speed up ioremap operations
Date: Fri, 29 Aug 2014 15:31:01 -0700 [thread overview]
Message-ID: <20140829223101.GA13583@kroah.com> (raw)
In-Reply-To: <20140829135200.636dec4a64e2668c2072d787@linux-foundation.org>
On Fri, Aug 29, 2014 at 01:52:00PM -0700, Andrew Morton wrote:
> On Fri, 29 Aug 2014 13:44:31 -0700 Mike Travis <travis@sgi.com> wrote:
>
> >
> >
> > On 8/29/2014 1:16 PM, Andrew Morton wrote:
> > > On Fri, 29 Aug 2014 14:53:28 -0500 Mike Travis <travis@sgi.com> wrote:
> > >
> > >>
> > >> We have a large university system in the UK that is experiencing
> > >> very long delays modprobing the driver for a specific I/O device.
> > >> The delay is from 8-10 minutes per device and there are 31 devices
> > >> in the system. This 4 to 5 hour delay in starting up those I/O
> > >> devices is very much a burden on the customer.
> > >>
> > >> There are two causes for requiring a restart/reload of the drivers.
> > >> First is periodic preventive maintenance (PM) and the second is if
> > >> any of the devices experience a fatal error. Both of these trigger
> > >> this excessively long delay in bringing the system back up to full
> > >> capability.
> > >>
> > >> The problem was tracked down to a very slow IOREMAP operation and
> > >> the excessively long ioresource lookup to insure that the user is
> > >> not attempting to ioremap RAM. These patches provide a speed up
> > >> to that function.
> > >>
> > >
> > > Really would prefer to have some quantitative testing results in here,
> > > as that is the entire point of the patchset. And it leaves the reader
> > > wondering "how much of this severe problem remains?".
> >
> > Okay, I have some results from testing. The modprobe time appears to
> > be affected quite a bit by previous activity on the ioresource list,
> > which I suspect is due to cache preloading. While the overall
> > improvement is impacted by other overhead of starting the devices,
> > this drastically improves the modprobe time.
> >
> > Also our system is considerably smaller so the percentages gained
> > will not be the same. Best case improvement with the modprobe
> > on our 20 device smallish system was from 'real 5m51.913s' to
> > 'real 0m18.275s'.
>
> Thanks, I slurped that into the changelog.
>
> > > Also, the -stable backport is a big ask, isn't it? It's arguably
> > > notabug and the affected number of machines is small.
> > >
> >
> > Ingo had suggested this. We are definitely pushing it to our distro
> > suppliers for our customers. Whether it's a big deal for smaller
> > systems is up in the air. Note that the customer system has 31 devices
> > on an SSI that includes a large number of other IB and SAS devices
> > as well as a number of nodes which all which have discontiguous memory
> > segments. I'm envisioning an ioresource list that numbers at least
> > several hundred entries. While that's somewhat indicative of typical
> > UV systems it is generally not that common otherwise.
> >
> > So I guess the -stable is merely a suggestion, not a request.
>
> Cc Greg for his thoughts!
Sounds like a good thing for stable.
thanks,
greg k-h
next prev parent reply other threads:[~2014-08-29 22:31 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-29 19:53 [PATCH 0/2] x86: Speed up ioremap operations Mike Travis
2014-08-29 19:53 ` Mike Travis
2014-08-29 19:53 ` [PATCH 1/2] x86: Optimize resource lookups for ioremap Mike Travis
2014-08-29 19:53 ` Mike Travis
2014-08-29 19:53 ` [PATCH 2/2] x86: Use optimized ioresource lookup in ioremap function Mike Travis
2014-08-29 19:53 ` Mike Travis
2014-08-29 20:16 ` [PATCH 0/2] x86: Speed up ioremap operations Andrew Morton
2014-08-29 20:16 ` Andrew Morton
2014-08-29 20:44 ` Mike Travis
2014-08-29 20:44 ` Mike Travis
2014-08-29 20:52 ` Andrew Morton
2014-08-29 20:52 ` Andrew Morton
2014-08-29 22:31 ` Greg KH [this message]
2014-08-29 22:31 ` Greg KH
-- strict thread matches above, loose matches on Subject: below --
2014-08-29 19:16 Mike Travis
2014-08-29 19:16 ` Mike Travis
2014-08-27 22:59 Mike Travis
2014-08-27 22:59 ` Mike Travis
2014-08-27 23:06 ` Andrew Morton
2014-08-27 23:06 ` Andrew Morton
2014-08-27 23:15 ` Mike Travis
2014-08-27 23:15 ` Mike Travis
2014-08-27 23:20 ` Andrew Morton
2014-08-27 23:20 ` Andrew Morton
2014-08-27 23:30 ` Mike Travis
2014-08-27 23:30 ` Mike Travis
2014-08-28 6:48 ` Ingo Molnar
2014-08-28 6:48 ` Ingo Molnar
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=20140829223101.GA13583@kroah.com \
--to=greg@kroah.com \
--cc=akpm@linux-foundation.org \
--cc=athorlton@sgi.com \
--cc=cpw@sgi.com \
--cc=dyoung@redhat.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mgorman@suse.de \
--cc=mingo@redhat.com \
--cc=msalter@redhat.com \
--cc=peterz@infradead.org \
--cc=riel@redhat.com \
--cc=rja@sgi.com \
--cc=tglx@linutronix.de \
--cc=travis@sgi.com \
--cc=x86@kernel.org \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.