linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [Question] vmalloc latency in RT-Linux
@ 2022-06-21 12:15 Zhipeng Shi
  2022-06-23 10:51 ` Baoquan He
  0 siblings, 1 reply; 7+ messages in thread
From: Zhipeng Shi @ 2022-06-21 12:15 UTC (permalink / raw)
  To: linux-mm, linux-rt-users; +Cc: tglx, shengjian.xu, schspa

I noticed in rt-linux, vmalloc has a large latency. This is because the 
free_vmap_area_lock is held for a long time in the function  
__purge_vmap_area_lazy. 

In non-RT-Linux, because the function spin_is_contended is well 
implemented, so there will be no such problem.

But in RT-Linux, spin_is_contended simply returns 0. I don't understand 
why this function was implemented like this before, but in order to
solve this problem, I thought of two ways.

The first is to modify the spin_is_contended definition in spinlock_rt.h 
as shown below, but I'm not sure if the change has side-effects:

-#define spin_is_contended(lock)    (((void)(lock), 0))
+static inline int spin_is_contended(spinlock_t *lock)
+{
+ unsigned long *p = (unsigned long *) &lock->lock.owner;
+
+ return (READ_ONCE(*p) & RT_MUTEX_HAS_WAITERS);
+}

The second is by reducing the number of lazy_max_pages, but it will lead 
to lower performance of vmalloc.

Guys, Do you have any good ideas?

Best regards,
Zhipeng


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

end of thread, other threads:[~2022-06-25  2:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-21 12:15 [Question] vmalloc latency in RT-Linux Zhipeng Shi
2022-06-23 10:51 ` Baoquan He
2022-06-23 18:04   ` Waiman Long
2022-06-24  2:39     ` Baoquan He
2022-06-24  5:56       ` Zhipeng Shi
2022-06-24  6:46       ` Sebastian Andrzej Siewior
2022-06-25  2:27         ` Waiman Long

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox