Re: [PATCH 08/14] lib/Kconfig: introduce FAST_PATH option

2021-02-19 Thread Andy Shevchenko
On Thu, Feb 18, 2021 at 11:24:19AM -0800, Yury Norov wrote: > On Thu, Feb 18, 2021 at 05:15:43PM +0200, Andy Shevchenko wrote: > > On Wed, Feb 17, 2021 at 08:05:06PM -0800, Yury Norov wrote: > > > This series introduces fast paths for find_bit() routines. It is > > > beneficial for typical

Re: [PATCH 08/14] lib/Kconfig: introduce FAST_PATH option

2021-02-18 Thread Yury Norov
On Thu, Feb 18, 2021 at 05:15:43PM +0200, Andy Shevchenko wrote: > On Wed, Feb 17, 2021 at 08:05:06PM -0800, Yury Norov wrote: > > This series introduces fast paths for find_bit() routines. It is > > beneficial for typical systems, but those who limited in I-cache > > may be concerned about

Re: [PATCH 08/14] lib/Kconfig: introduce FAST_PATH option

2021-02-18 Thread Andy Shevchenko
On Wed, Feb 17, 2021 at 08:05:06PM -0800, Yury Norov wrote: > This series introduces fast paths for find_bit() routines. It is > beneficial for typical systems, but those who limited in I-cache > may be concerned about increasing the .text size of the Image. > > To address this concern, one can

[PATCH 08/14] lib/Kconfig: introduce FAST_PATH option

2021-02-17 Thread Yury Norov
This series introduces fast paths for find_bit() routines. It is beneficial for typical systems, but those who limited in I-cache may be concerned about increasing the .text size of the Image. To address this concern, one can disable FAST_PATH option in the config and some save memory. The