[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <7a107b1e-f99f-186b-f5db-504b7691993d@lge.com>
Date: Thu, 18 Jan 2018 10:57:13 +0900
From: Byungchul Park <byungchul.park@....com>
To: Petr Mladek <pmladek@...e.com>
Cc: Steven Rostedt <rostedt@...dmis.org>,
Sergey Senozhatsky <sergey.senozhatsky@...il.com>,
akpm@...ux-foundation.org, linux-mm@...ck.org,
Cong Wang <xiyou.wangcong@...il.com>,
Dave Hansen <dave.hansen@...el.com>,
Johannes Weiner <hannes@...xchg.org>,
Mel Gorman <mgorman@...e.de>, Michal Hocko <mhocko@...nel.org>,
Vlastimil Babka <vbabka@...e.cz>,
Peter Zijlstra <peterz@...radead.org>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Jan Kara <jack@...e.cz>,
Mathieu Desnoyers <mathieu.desnoyers@...icios.com>,
Tetsuo Handa <penguin-kernel@...ove.SAKURA.ne.jp>,
rostedt@...e.goodmis.org,
Sergey Senozhatsky <sergey.senozhatsky.work@...il.com>,
Tejun Heo <tj@...nel.org>, Pavel Machek <pavel@....cz>,
linux-kernel@...r.kernel.org, kernel-team@....com
Subject: Re: [PATCH v5 1/2] printk: Add console owner and waiter logic to load
balance console writes
On 1/18/2018 10:53 AM, Byungchul Park wrote:
> Hello,
>
> This is a thing simulating a wait for an event e.g.
> wait_for_completion() doing spinning instead of sleep, rather
> than a spinlock. I mean:
>
> This context
> ------------
> while (READ_ONCE(console_waiter)) /* Wait for the event */
> cpu_relax();
>
> Another context
> ---------------
> WRITE_ONCE(console_waiter, false); /* Event */
>
> That's why I said this's the exact case of cross-release. Anyway
> without cross-release, we usually use typical acquire/release
> pairs to cover a wait for an event in the following way:
>
> A context
> ---------
> lock_map_acquire(wait); /* Or lock_map_acquire_read(wait) */
> /* Read one is better though.. */
>
> /* A section, we suspect, a wait for an event might happen. */
> ...
> lock_map_release(wait);
>
>
> The place actually doing the wait
> ---------------------------------
> lock_map_acquire(wait);
> lock_map_acquire(wait);
^
lock_map_release(wait);
--
Thanks,
Byungchul
Powered by blists - more mailing lists