linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Alex Kogan <alex.kogan@oracle.com>
To: Xing Zhengjun <zhengjun.xing@linux.intel.com>
Cc: kernel test robot <oliver.sang@intel.com>,
	0day robot <lkp@intel.com>,
	Steven Sistare <steven.sistare@oracle.com>,
	Waiman Long <longman@redhat.com>,
	LKML <linux-kernel@vger.kernel.org>,
	"lkp@lists.01.org" <lkp@lists.01.org>,
	"linux@armlinux.org.uk" <linux@armlinux.org.uk>,
	"peterz@infradead.org" <peterz@infradead.org>,
	"mingo@redhat.com" <mingo@redhat.com>,
	"will.deacon@arm.com" <will.deacon@arm.com>,
	"arnd@arndb.de" <arnd@arndb.de>,
	"linux-arch@vger.kernel.org" <linux-arch@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	"tglx@linutronix.de" <tglx@linutronix.de>,
	"bp@alien8.de" <bp@alien8.de>, "hpa@zytor.com" <hpa@zytor.com>,
	"x86@kernel.org" <x86@kernel.org>,
	"guohanjun@huawei.com" <guohanjun@huawei.com>,
	"jglauber@marvell.com" <jglauber@marvell.com>,
	Daniel Jordan <daniel.m.jordan@oracle.com>,
	Dave Dice <dave.dice@oracle.com>
Subject: Re: [External] : Re: [LKP] Re: [locking/qspinlock] 0e8d8f4f12: stress-ng.zero.ops_per_sec -9.7% regression
Date: Mon, 22 Mar 2021 19:49:46 -0400	[thread overview]
Message-ID: <90FEBB90-F136-4692-8102-9C21367D34B9@oracle.com> (raw)
In-Reply-To: <DD47C64E-9687-4CBE-9A07-835E1540DC8D@oracle.com>



> On Mar 22, 2021, at 7:15 PM, Alex Kogan <alex.kogan@oracle.com> wrote:
> 
> Many thanks to Zhengjun Xing for the help in reproducing the issue.
> 
> On our system, the regression is less than 7% (the numbers are below), however,
> at least at the full capacity, the numbers are very stable. This allowed me to track down the
> issue and identify unnecessary stores into the queue node structure, which may cause 
> cache misses during lock transfers. Moving those stores into the initialization code (cna_init_nodes())
> solves the problem.
> 
> Below are the numbers of “bogo ops/s” reported by stress-ng with various numbers of workers. 
> Each number represents an average over 25 runs, with the standard deviation reported in ().
> 
> #workers      stock                          CNA / speedup               CNA+patch / speedup
>  18  16327.844 (581.744) 15480.061 (582.654) / 0.948  16422.349 (473.729) / 1.006
>  36    8573.557 (285.058)   8003.888 (196.125) / 0.934    8457.436 (258.065) / 0.986
>  72    4042.535 (28.766)     3960.407 (28.648) / 0.980      4107.143 (23.037) / 1.016
> 108   2735.913 (7.440)       2678.888 (7.102) / 0.979        2774.751 (4.375) / 1.014
> 144   2093.477 (3.341)       2042.968 (1.982) / 0.976        2109.879 (1.714) / 1.008

Those are "bogo ops/s (usr+sys time)", btw. Just in case, below are "bogo ops/s (real time)”
numbers, which I believe is what is reported by the kernel test robot:

#workers      stock                     CNA / speedup               CNA+patch / speedup
 18   262932.282 (12638.248)   249653.081 (11822.940) / 0.949  265189.104 (9271.447) / 1.009
 36   277315.640 (11100.324)   260177.335 (7186.451) / 0.938   274691.250 (10329.523) / 0.991
 72   263904.000 (2128.206)    259967.180 (1857.393) / 0.985   268971.483 (1713.639) / 1.019
108   273811.373 (664.517)     268949.947 (690.329) / 0.982    278196.867 (403.978) / 1.016
144   284321.364 (399.281)     278153.208 (210.776) / 0.978    287343.806 (280.963) / 1.011

Regards,
— Alex

> The patch is attached. As always, comments are welcome!
> 
> Unless there any objections, I will reintegrate the patch into the series, and post a new
> revision.
> 
> Regards,
> — Alex


  parent reply	other threads:[~2021-03-22 23:51 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-23  5:44 [PATCH v13 0/6] Add NUMA-awareness to qspinlock Alex Kogan
2020-12-23  5:44 ` [PATCH v13 1/6] locking/qspinlock: Rename mcs lock/unlock macros and make them more generic Alex Kogan
2020-12-23  5:44 ` [PATCH v13 2/6] locking/qspinlock: Refactor the qspinlock slow path Alex Kogan
2020-12-23  5:44 ` [PATCH v13 3/6] locking/qspinlock: Introduce CNA into the slow path of qspinlock Alex Kogan
2020-12-26 11:19   ` [locking/qspinlock] 0e8d8f4f12: fsmark.files_per_sec 213.9% improvement kernel test robot
2020-12-28  8:16   ` [locking/qspinlock] 0e8d8f4f12: stress-ng.zero.ops_per_sec -9.7% regression kernel test robot
2021-03-10 17:17     ` Alex Kogan
2021-03-15  2:28       ` [LKP] " Xing Zhengjun
2021-03-15 13:30         ` [External] : " Alex Kogan
2021-03-16  1:29           ` Xing Zhengjun
     [not found]             ` <DD47C64E-9687-4CBE-9A07-835E1540DC8D@oracle.com>
2021-03-22 23:49               ` Alex Kogan [this message]
2020-12-23  5:44 ` [PATCH v13 4/6] locking/qspinlock: Introduce starvation avoidance into CNA Alex Kogan
2020-12-23  5:44 ` [PATCH v13 5/6] locking/qspinlock: Avoid moving certain threads between waiting queues in CNA Alex Kogan
2020-12-23  5:44 ` [PATCH v13 6/6] locking/qspinlock: Introduce the shuffle reduction optimization into CNA Alex Kogan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=90FEBB90-F136-4692-8102-9C21367D34B9@oracle.com \
    --to=alex.kogan@oracle.com \
    --cc=arnd@arndb.de \
    --cc=bp@alien8.de \
    --cc=daniel.m.jordan@oracle.com \
    --cc=dave.dice@oracle.com \
    --cc=guohanjun@huawei.com \
    --cc=hpa@zytor.com \
    --cc=jglauber@marvell.com \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=lkp@intel.com \
    --cc=lkp@lists.01.org \
    --cc=longman@redhat.com \
    --cc=mingo@redhat.com \
    --cc=oliver.sang@intel.com \
    --cc=peterz@infradead.org \
    --cc=steven.sistare@oracle.com \
    --cc=tglx@linutronix.de \
    --cc=will.deacon@arm.com \
    --cc=x86@kernel.org \
    --cc=zhengjun.xing@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).