[dpdk-dev] [PATCH v7 4/5] hash: add lock-free read-write concurrency

Jerin Jacob jerin.jacob at caviumnetworks.com
Sat Nov 3 16:40:55 CET 2018


-----Original Message-----
> Date: Sat, 3 Nov 2018 11:52:54 +0000
> From: Jerin Jacob <jerin.jacob at caviumnetworks.com>
> To: Honnappa Nagarahalli <honnappa.nagarahalli at arm.com>
> CC: "bruce.richardson at intel.com" <bruce.richardson at intel.com>,
>  "pablo.de.lara.guarch at intel.com" <pablo.de.lara.guarch at intel.com>,
>  "dev at dpdk.org" <dev at dpdk.org>, "yipeng1.wang at intel.com"
>  <yipeng1.wang at intel.com>, "dharmik.thakkar at arm.com"
>  <dharmik.thakkar at arm.com>, "gavin.hu at arm.com" <gavin.hu at arm.com>,
>  "nd at arm.com" <nd at arm.com>, "thomas at monjalon.net" <thomas at monjalon.net>,
>  "ferruh.yigit at intel.com" <ferruh.yigit at intel.com>,
>  "hemant.agrawal at nxp.com" <hemant.agrawal at nxp.com>
> Subject: Re: [dpdk-dev] [PATCH v7 4/5] hash: add lock-free read-write
>  concurrency
> 
> -----Original Message-----
> > Date: Fri, 26 Oct 2018 00:37:32 -0500
> > From: Honnappa Nagarahalli <honnappa.nagarahalli at arm.com>
> > To: bruce.richardson at intel.com, pablo.de.lara.guarch at intel.com
> > CC: dev at dpdk.org, yipeng1.wang at intel.com, honnappa.nagarahalli at arm.com,
> >  dharmik.thakkar at arm.com, gavin.hu at arm.com, nd at arm.com
> > Subject: [dpdk-dev] [PATCH v7 4/5] hash: add lock-free read-write
> >  concurrency
> > X-Mailer: git-send-email 2.7.4
> >
> >
> > Add lock-free read-write concurrency. This is achieved by the
> > following changes.
> >
> > 1) Add memory ordering to avoid race conditions. The only race
> > condition that can occur is -  using the key store element
> > before the key write is completed. Hence, while inserting the element
> > the release memory order is used. Any other race condition is caught
> > by the key comparison. Memory orderings are added only where needed.
> > For ex: reads in the writer's context do not need memory ordering
> > as there is a single writer.
> >
> > key_idx in the bucket entry and pdata in the key store element are
> > used for synchronisation. key_idx is used to release an inserted
> > entry in the bucket to the reader. Use of pdata for synchronisation
> > is required due to updation of an existing entry where-in only
> > the pdata is updated without updating key_idx.
> >
> > 2) Reader-writer concurrency issue, caused by moving the keys
> > to their alternative locations during key insert, is solved
> > by introducing a global counter(tbl_chng_cnt) indicating a
> > change in table.
> >
> > 3) Add the flag to enable reader-writer concurrency during
> > run time.
> >
> > Signed-off-by: Honnappa Nagarahalli <honnappa.nagarahalli at arm.com>
> 
> Hi Honnappa,
> 
> This patch is causing _~24%_ performance regression on mpps/core with 64B
> packet with l3fwd in EM mode with octeontx.
> 
> Example command to reproduce with 2 core+2 port l3fwd in hash mode(-E)
> 
> # l3fwd -v -c 0xf00000 -n 4 -- -P -E -p 0x3 --config="(0, 0, 23),(1, 0, 22)"
> 
> Observations:
> 1) When hash lookup is _success_ then regression is only 3%. Which is kind of
> make sense because additional new atomic instructions
> 
> What I meant by lookup is _success_ is:
> Configuring traffic gen like below to match lookup as defined
> ipv4_l3fwd_em_route_array() in examples/l3fwd/l3fwd_em.c
> 
> dest.ip      port0    201.0.0.0
> src.ip       port0    200.20.0.1
> dest.port    port0    102
> src.port     port0    12
> 
> dest.ip      port1    101.0.0.0
> src.ip       port1    100.10.0.1
> dest.port    port1    101
> src.port     port1    11
> 
> tx.type      IPv4+TCP
> 
> 
> 
> 2) When hash lookup _fails_ the per core mpps regression comes around 24% with 64B packet size.
> 
> What I meant by lookup is _failure_ is:
> Configuring traffic gen not to hit the 5 tuples defined in
> ipv4_l3fwd_em_route_array() in examples/l3fwd/l3fwd_em.c
> 
> 
> 3) perf top _without_ this patch
>   37.30%  l3fwd         [.] em_main_loop
>   22.40%  l3fwd         [.] rte_hash_lookup
>   13.05%  l3fwd         [.] nicvf_recv_pkts_cksum
>    9.70%  l3fwd         [.] nicvf_xmit_pkts
>    6.18%  l3fwd         [.] ipv4_hash_crc
>    4.77%  l3fwd         [.] nicvf_fill_rbdr
>    4.50%  l3fwd         [.] nicvf_single_pool_free_xmited_buffers
>    1.16%  libc-2.28.so  [.] memcpy
>    0.47%  l3fwd         [.] common_ring_mp_enqueue
>    0.44%  l3fwd         [.] common_ring_mc_dequeue
>    0.03%  l3fwd         [.] strerror_r at plt
> 
> 4) perf top with this patch
> 
>   47.41%  l3fwd         [.] rte_hash_lookup
>   23.55%  l3fwd         [.] em_main_loop
>    9.53%  l3fwd         [.] nicvf_recv_pkts_cksum
>    6.95%  l3fwd         [.] nicvf_xmit_pkts
>    4.63%  l3fwd         [.] ipv4_hash_crc
>    3.30%  l3fwd         [.] nicvf_fill_rbdr
>    3.29%  l3fwd         [.] nicvf_single_pool_free_xmited_buffers
>    0.76%  libc-2.28.so  [.] memcpy
>    0.30%  l3fwd         [.] common_ring_mp_enqueue
>    0.25%  l3fwd         [.] common_ring_mc_dequeue
>    0.04%  l3fwd         [.] strerror_r at plt
> 
> 
> 5) Based on assembly, most of the cycles spends in rte_hash_lookup
> around  key_idx = __atomic_load_n(&bkt->key_idx[i](whose LDAR)
> and "if (bkt->sig_current[i] == sig && key_idx != EMPTY_SLOT) {"
> 
> 
> 6) Since this patch is big and does 3 things are mentioned above,
> it is difficult to pin point what is causing the exact issue.
> 
> But, my primary analysis shows the item (1)(adding the atomic barriers).
> But I need to spend more cycles to find out the exact causes.


+ Adding POWERPC maintainer as mostly POWERPC also impacted on this patch.
Looks like __atomic_load_n(__ATOMIC_ACQUIRE) will be just mov instruction
on x86, so x86 may not be much impacted.

I analyzed it further, it a plain LD vs __atomic_load_n(__ATOMIC_ACQUIRE) issue.

The outer __rte_hash_lookup_with_hash has only 2ish __atomic_load_n
operation which causing only around 1% regression.

But since this patch has "two" __atomic_load_n in each
search_one_bucket() and in the worst case it is looping around 16 time.s
i.e "32 LDAR per packet" explains why 24% drop in lookup miss cases
and ~3% drop in lookup success case.

So this patch's regression will be based on how many cycles an LDAR
takes on given ARMv8 platform and on how many issue(s) it can issue LDAR
instructions at given point of time.

IMO, This scheme won't work. I think, we are introducing such
performance critical feature, we need to put under function pointer scheme so that
if an application does not need such feature it can use plain loads.

Already we have a lot of flags in the hash library to define the runtime
behavior, I think, it makes sense to select function pointer based
on such flags and have a performance effective solution
based on application requirements.

Just to prove the above root cause analysis, the following patch can fix
the performance issue. I know, it is NOT correct in the context of
this patch. Just pasting in case, someone want to see the cost of LD vs
__atomic_load_n(__ATOMIC_ACQUIRE) on a given platform.


On a different note, I think, it makes sense to use RCU based structure
in these case to avoid performance issue. liburcu has a good hash
library for such cases. (very less write and more read cases)

/Jerin

@@ -1135,27 +1134,21 @@ search_one_bucket(const struct rte_hash *h,
const void *key, uint16_t sig,
                        void **data, const struct rte_hash_bucket *bkt)
 {
        int i;
-       uint32_t key_idx;
-       void *pdata;
        struct rte_hash_key *k, *keys = h->key_store;
 
        for (i = 0; i < RTE_HASH_BUCKET_ENTRIES; i++) {
-               key_idx = __atomic_load_n(&bkt->key_idx[i],
-                                         __ATOMIC_ACQUIRE);
-               if (bkt->sig_current[i] == sig && key_idx != EMPTY_SLOT)
                {
+               if (bkt->sig_current[i] == sig &&
+                               bkt->key_idx[i] != EMPTY_SLOT) {
                        k = (struct rte_hash_key *) ((char *)keys +
-                                       key_idx * h->key_entry_size);
-                       pdata = __atomic_load_n(&k->pdata,
-                                       __ATOMIC_ACQUIRE);
-
+                                       bkt->key_idx[i] *
h->key_entry_size);
                        if (rte_hash_cmp_eq(key, k->key, h) == 0) {
                                if (data != NULL)
-                                       *data = pdata;
+                                       *data = k->pdata;
                                /*
                                 * Return index where key is stored,
                                 * subtracting the first dummy index
                                 */
-                               return key_idx - 1;
+                               return bkt->key_idx[i] - 1;
                        }
                }
        }


> 
> The use case like lwfwd in hash mode, where writer does not update
> stuff in fastpath(aka insert op) will be impact with this patch.
> 
> 7) Have you checked the l3fwd lookup failure use case in your environment?
> if so, please share your observation and if not, could you please check it?
> 
> 8) IMO, Such performance regression is not acceptable for l3fwd use case
> where hash insert op will be done in slowpath.
> 
> 9) Does anyone else facing this problem?
> 
> 


More information about the dev mailing list