All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] x86: Speed up ioremap operations
@ 2014-08-27 22:59 ` Mike Travis
  0 siblings, 0 replies; 34+ messages in thread
From: Mike Travis @ 2014-08-27 22:59 UTC (permalink / raw)
  To: mingo, tglx, hpa
  Cc: akpm, msalter, dyoung, riel, peterz, mgorman, linux-kernel, x86,
	linux-mm


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.

-- 

--
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>

^ permalink raw reply	[flat|nested] 34+ messages in thread
* [PATCH 0/2] x86: Speed up ioremap operations
@ 2014-08-29 19:16 Mike Travis
  2014-08-29 19:16   ` Mike Travis
  0 siblings, 1 reply; 34+ messages in thread
From: Mike Travis @ 2014-08-29 19:16 UTC (permalink / raw)
  To: mingo, tglx, hpa
  Cc: akpm, msalter, dyoung, riel, peterz, mgorman, linux-kernel, x86,
	linux-mm


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.

-- 

--
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>

^ permalink raw reply	[flat|nested] 34+ messages in thread
* [PATCH 0/2] x86: Speed up ioremap operations
@ 2014-08-29 19:53 Mike Travis
  2014-08-29 19:53   ` Mike Travis
  0 siblings, 1 reply; 34+ messages in thread
From: Mike Travis @ 2014-08-29 19:53 UTC (permalink / raw)
  To: mingo, tglx, hpa
  Cc: akpm, msalter, dyoung, riel, peterz, mgorman, linux-kernel, x86,
	linux-mm


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.

-- 

--
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>

^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2014-08-29 19:53 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-27 22:59 [PATCH 0/2] x86: Speed up ioremap operations Mike Travis
2014-08-27 22:59 ` Mike Travis
2014-08-27 22:59 ` [PATCH 1/2] x86: Optimize resource lookups for ioremap Mike Travis
2014-08-27 22:59   ` Mike Travis
2014-08-27 23:05   ` Andrew Morton
2014-08-27 23:05     ` Andrew Morton
2014-08-27 23:09     ` Mike Travis
2014-08-27 23:09       ` Mike Travis
2014-08-27 23:18       ` Andrew Morton
2014-08-27 23:18         ` Andrew Morton
2014-08-27 23:25         ` Mike Travis
2014-08-27 23:25           ` Mike Travis
2014-08-27 23:37           ` Andrew Morton
2014-08-27 23:37             ` Andrew Morton
2014-08-27 23:54             ` Mike Travis
2014-08-27 23:54               ` Mike Travis
2014-08-28  0:21               ` Andrew Morton
2014-08-28  0:21                 ` Andrew Morton
2014-08-27 22:59 ` [PATCH 2/2] x86: Use optimized ioresource lookup in ioremap function Mike Travis
2014-08-27 22:59   ` Mike Travis
2014-08-27 23:06 ` [PATCH 0/2] x86: Speed up ioremap operations 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
  -- strict thread matches above, loose matches on Subject: below --
2014-08-29 19:16 Mike Travis
2014-08-29 19:16 ` [PATCH 1/2] x86: Optimize resource lookups for ioremap Mike Travis
2014-08-29 19:16   ` Mike Travis
2014-08-29 19:53 [PATCH 0/2] x86: Speed up ioremap operations 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

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.