All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] tty: serial: max310x: convert to use maple tree register cache
@ 2024-03-18  6:40 wangkaiyuan
  2024-03-18  8:30 ` Andy Shevchenko
  2024-04-09 13:39 ` Greg KH
  0 siblings, 2 replies; 4+ messages in thread
From: wangkaiyuan @ 2024-03-18  6:40 UTC (permalink / raw)
  To: gregkh, jirislaby, hvilleneuve, andy.shevchenko
  Cc: linux-kernel, linux-serial, wangkaiyuan

The maple tree register cache is based on a much more modern data structure
than the rbtree cache and makes optimisation choices which are probably
more appropriate for modern systems than those made by the rbtree cache.

Signed-off-by: wangkaiyuan <wangkaiyuan@inspur.com>
---
 drivers/tty/serial/max310x.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/tty/serial/max310x.c b/drivers/tty/serial/max310x.c
index 14dd9cfaa9f7..3b72b2137275 100644
--- a/drivers/tty/serial/max310x.c
+++ b/drivers/tty/serial/max310x.c
@@ -1478,7 +1478,7 @@ static struct regmap_config regcfg = {
 	.reg_bits = 8,
 	.val_bits = 8,
 	.write_flag_mask = MAX310X_WRITE_BIT,
-	.cache_type = REGCACHE_RBTREE,
+	.cache_type = REGCACHE_MAPLE,
 	.max_register = MAX310X_REG_1F,
 	.writeable_reg = max310x_reg_writeable,
 	.volatile_reg = max310x_reg_volatile,
@@ -1582,7 +1582,7 @@ static int max310x_i2c_extended_reg_enable(struct device *dev, bool enable)
 static struct regmap_config regcfg_i2c = {
 	.reg_bits = 8,
 	.val_bits = 8,
-	.cache_type = REGCACHE_RBTREE,
+	.cache_type = REGCACHE_MAPLE,
 	.writeable_reg = max310x_reg_writeable,
 	.volatile_reg = max310x_reg_volatile,
 	.precious_reg = max310x_reg_precious,
-- 
2.27.0


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

* Re: [PATCH 1/2] tty: serial: max310x: convert to use maple tree register cache
  2024-03-18  6:40 [PATCH 1/2] tty: serial: max310x: convert to use maple tree register cache wangkaiyuan
@ 2024-03-18  8:30 ` Andy Shevchenko
  2024-04-09 13:39 ` Greg KH
  1 sibling, 0 replies; 4+ messages in thread
From: Andy Shevchenko @ 2024-03-18  8:30 UTC (permalink / raw)
  To: wangkaiyuan; +Cc: gregkh, jirislaby, hvilleneuve, linux-kernel, linux-serial

On Mon, Mar 18, 2024 at 8:40 AM wangkaiyuan <wangkaiyuan@inspur.com> wrote:
>
> The maple tree register cache is based on a much more modern data structure
> than the rbtree cache and makes optimisation choices which are probably
> more appropriate for modern systems than those made by the rbtree cache.

FWIW,
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>

-- 
With Best Regards,
Andy Shevchenko

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

* Re: [PATCH 1/2] tty: serial: max310x: convert to use maple tree register cache
  2024-03-18  6:40 [PATCH 1/2] tty: serial: max310x: convert to use maple tree register cache wangkaiyuan
  2024-03-18  8:30 ` Andy Shevchenko
@ 2024-04-09 13:39 ` Greg KH
  2024-04-09 13:40   ` Greg KH
  1 sibling, 1 reply; 4+ messages in thread
From: Greg KH @ 2024-04-09 13:39 UTC (permalink / raw)
  To: wangkaiyuan
  Cc: jirislaby, hvilleneuve, andy.shevchenko, linux-kernel, linux-serial

On Mon, Mar 18, 2024 at 02:40:36PM +0800, wangkaiyuan wrote:
> The maple tree register cache is based on a much more modern data structure
> than the rbtree cache and makes optimisation choices which are probably
> more appropriate for modern systems than those made by the rbtree cache.
> 
> Signed-off-by: wangkaiyuan <wangkaiyuan@inspur.com>
> ---
>  drivers/tty/serial/max310x.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Where is patch 2/2 of this series?  I don't see it anywhere on
lore.kernel.org.

Please fix up and resend the patch properly.

thanks,

greg k-h

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

* Re: [PATCH 1/2] tty: serial: max310x: convert to use maple tree register cache
  2024-04-09 13:39 ` Greg KH
@ 2024-04-09 13:40   ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2024-04-09 13:40 UTC (permalink / raw)
  To: wangkaiyuan
  Cc: jirislaby, hvilleneuve, andy.shevchenko, linux-kernel, linux-serial

On Tue, Apr 09, 2024 at 03:39:32PM +0200, Greg KH wrote:
> On Mon, Mar 18, 2024 at 02:40:36PM +0800, wangkaiyuan wrote:
> > The maple tree register cache is based on a much more modern data structure
> > than the rbtree cache and makes optimisation choices which are probably
> > more appropriate for modern systems than those made by the rbtree cache.
> > 
> > Signed-off-by: wangkaiyuan <wangkaiyuan@inspur.com>
> > ---
> >  drivers/tty/serial/max310x.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> Where is patch 2/2 of this series?  I don't see it anywhere on
> lore.kernel.org.

Ah, I see it now, it is not connected here.  I'll take both now but next
time please use something like 'git send-email' for both commits at the
same time.

thanks,

greg k-h

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

end of thread, other threads:[~2024-04-09 13:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-18  6:40 [PATCH 1/2] tty: serial: max310x: convert to use maple tree register cache wangkaiyuan
2024-03-18  8:30 ` Andy Shevchenko
2024-04-09 13:39 ` Greg KH
2024-04-09 13:40   ` Greg KH

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.