DPDK patches and discussions
 help / color / mirror / Atom feed
From: =?gb18030?B?1ebO0rfnssk=?= <1534057243@qq.com>
To: =?gb18030?B?QW5hbnlldiwgS29uc3RhbnRpbg==?=
	<konstantin.ananyev@intel.com>,
	=?gb18030?B?UmFtaWEsIEthbm5hbiBCYWJ1?=
	<kannan.babu.ramia@intel.com>, =?gb18030?B?ZGV2?= <dev@dpdk.org>
Subject: [dpdk-dev] =?gb18030?b?u9i4tKO6UkU6ILvYuLSjulJFOiC72Li0o7pSRTog?= =?gb18030?q?_Thread_safety_in_rte=5Facl?=
Date: Mon, 15 Jan 2018 10:01:25 +0800	[thread overview]
Message-ID: <tencent_124D38DE9E366CE14C92CC18D015AEB80906@qq.com> (raw)
In-Reply-To: <2601191342CEEE43887BDE71AB97725880E3B786@irsmsx105.ger.corp.intel.com>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="gb18030", Size: 5103 bytes --]

Thanks for providing idea to me! I will refer to that.


I have another way feeling that it should works too. switchover active and standby pointer on forward plane, rather than on control plane. when update ctx in control plane(add rule, build on standby, meanwhile add rule on active not build), set flag=1, and on forward plane if flag==1 then switchover and set flag=0. 










------------------ ԭʼÓʼþ ------------------
·¢¼þÈË: "Ananyev, Konstantin";<konstantin.ananyev@intel.com>;
·¢ËÍʱ¼ä: 2018Äê1ÔÂ10ÈÕ(ÐÇÆÚÈý) ÍíÉÏ7:46
ÊÕ¼þÈË: "ÕæÎÒ·ç²É"<1534057243@qq.com>;"Ramia, Kannan Babu"<kannan.babu.ramia@intel.com>;"dev"<dev@dpdk.org>;

Ö÷Ìâ: RE: »Ø¸´£ºRE: »Ø¸´£ºRE: [dpdk-dev] Thread safety in rte_acl



  
 
 
The simplest one would be to have rwlock to read/write active index.
 
Also something like that I think should work (just a sample, not tested or compiled):
 
 
 
struct acl {
 
       rte_acl_ctx *ctx[2];
 
       rte_atomic32_t use;
 
       uint32_t active;
 
};
 
 
 
update(struct acl *acl, ¡­)
 
{
 
   <update/rebuild  non-acive copy>
 
   /* make sure all stores are visible */
 
   rte_smp_wmb();
 
   
 
   uint32_t  active = acl->active;
 
   acl->active = active ^ 1;
 

 
    /* to avoid store/load reorder */
 
   rte_smp_mb();
 
 
 
   while (rte_atomic32_read(&acl->use) != 0)
 
      rte_pause();
 
   
 
   <free old active copy here>
 
}
 
 
 
classify(struct acl *acl, ¡­)
 
{
 
     rte_atomic32_inc(&acl->use);
 
     rte_acl_classify(acl->ctx[acl->active}, ¡­);
 
     rte_atomic32_dec(&acl->use);
 
}
 
 
 
Konstantin
 
 
    
From: ÕæÎÒ·ç²É [mailto:1534057243@qq.com] 
 Sent: Wednesday, January 10, 2018 2:50 AM
 To: Ananyev, Konstantin <konstantin.ananyev@intel.com>; Ramia, Kannan Babu <kannan.babu.ramia@intel.com>; dev <dev@dpdk.org>
 Subject: »Ø¸´£ºRE: »Ø¸´£ºRE: [dpdk-dev] Thread safety in rte_acl
 
 
 
 
  

 >Yes, you'll need some sort of synchronization.
 >Lock (or rwlock) is one option, but as build could take quite long time - probably not the best one.
 >Another way - have a struct cthat ontains pointers to 2 ctx and an index for active one.
 >Then you can do classify() on active one while doing add_rules/build on second one.
 >Then when the second one is re-build you can switch an active index to it.
 >I think librte_table uses that method.
 >Of course you might need a reference counter or some other way to deternine that
 >no-one is using old copy anymore and it is free to update it again.
 >Konstantin 
 
   
 
 
  
I have look at the source of samplevnf as below doc, it switchover active and standby directlt without ensuring old copy not used anymore.
 
  
https://github.com/opnfv/samplevnf/blob/master/VNFs/vACL/pipeline/pipeline_acl.c: cmd_acl_applyruleset_parsed
 
  
 
 
  
So, my question is that how to ensure that no-one is using old copy anymore ? 
 
  
 
 
  
thanks!
 
  
------------------ ԭʼÓʼþ ------------------
 
   
·¢¼þÈË: "Ananyev, Konstantin";<konstantin.ananyev@intel.com>;
 
  
·¢ËÍʱ¼ä: 2018Äê1ÔÂ8ÈÕ(ÐÇÆÚÒ») ÍíÉÏ8:17
 
  
ÊÕ¼þÈË: "ÕæÎÒ·ç²É"<1534057243@qq.com>;"dev"<dev@dpdk.org>;
 
  
Ö÷Ìâ: RE: »Ø¸´£ºRE: [dpdk-dev] Thread safety in rte_acl
 
 
  
 
 
 

 
 
 >> 2. Is it safe that one
 >> thread will run  "rte_acl_classify" when another thread tries to add new rules to same ctx? thanks,
 
 >Just add new rules is safe, but applying them (calling rte_acl_build()) is not.
 
 > In my case, there are two process sharing hugepage memory£¨struct rte_acl_ctx£©,  one process call 'rte_acl_build' to add and apply rule, another process  call  frequently 'rte_acl_classify' to > match rule, does it need to add lock? if not, is there other method to implement this safely?
 
 Yes, you'll need some sort of synchronization.
 Lock (or rwlock) is one option, but as build could take quite long time - probably not the best one.
 Another way - have a struct cthat ontains pointers to 2 ctx and an index for active one.
 Then you can do classify() on active one while doing add_rules/build on second one.
 Then when the second one is re-build you can switch an active index to it.
 I think librte_table uses that method.
 Of course you might need a reference counter or some other way to deternine that
 no-one is using old copy anymore and it is free to update it again.
 Konstantin 
 
 
 ------------------ ԭʼÓʼþ ------------------
 ·¢¼þÈË: "Ananyev, Konstantin";<konstantin.ananyev@intel.com>;
 ·¢ËÍʱ¼ä: 2018Äê1ÔÂ8ÈÕ(ÐÇÆÚÒ») ÍíÉÏ7:42
 ÊÕ¼þÈË: "ÕæÎÒ·ç²É"<1534057243@qq.com>;"dev"<dev@dpdk.org>;
 Ö÷Ìâ: RE: [dpdk-dev] Thread safety in rte_acl
 
 > 
 > Hi, I have two questions : 1. Is it safe that multiple threads will run "rte_acl_classify" in parallel  (on the same ctx )?
 
 Yes.
 
 > 2. Is it safe that one
 > thread will run  "rte_acl_classify" when another thread tries to add new rules to same ctx? thanks,
 
 Just add new rules is safe, but applying them (calling rte_acl_build()) is not.
 Konstantin

  reply	other threads:[~2018-01-15  2:01 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-08  5:42 [dpdk-dev] Thread safety in rte_acl  =?gb18030?B?1ebO0rfnssk=?=
2018-01-08 11:42 ` Ananyev, Konstantin
2018-01-08 11:59   ` [dpdk-dev] =?gb18030?b?u9i4tKO6UkU6ICBUaHJlYWQgc2FmZXR5IGluIHJ0?= =?gb18030?q?e=5Facl?=  =?gb18030?B?1ebO0rfnssk=?=
2018-01-08 12:17     ` [dpdk-dev] 回复:RE: Thread safety in rte_acl Ananyev, Konstantin
2018-01-08 13:43       ` [dpdk-dev] =?gb18030?b?u9i4tKO6UkU6ILvYuLSjulJFOiAgVGhyZWFkIHNh?= =?gb18030?q?fety_in_rte=5Facl?=  =?gb18030?B?1ebO0rfnssk=?=
2018-01-10  2:50       `  =?gb18030?B?1ebO0rfnssk=?=
2018-01-10  4:00         ` [dpdk-dev] 回复:RE: 回复:RE: Thread safety in rte_acl Ramia, Kannan Babu
2018-01-10 11:46         ` Ananyev, Konstantin
2018-01-15  2:01           `  =?gb18030?B?1ebO0rfnssk=?= [this message]
2018-01-15 10:34             ` [dpdk-dev] 回复:RE: " Ananyev, Konstantin
2018-01-15 10:41               ` [dpdk-dev] =?gb18030?b?u9i4tKO6UkU6ILvYuLSjulJFOiC72Li0o7pSRTogu9i4tKO6UkU6ICBUaHJlYWQgc2FmZXR5IGluIHJ0ZV9hY2w=?=  =?gb18030?B?1ebO0rfnssk=?=
2018-01-08 13:06     ` [dpdk-dev] 回复:RE: Thread safety in rte_acl Ramia, Kannan Babu
2018-01-08 13:42       ` [dpdk-dev] =?gb18030?b?u9i4tKO6UkU6ICC72Li0o7pSRTogIFRocmVhZCBz?= =?gb18030?q?afety_in_rte=5Facl?=  =?gb18030?B?1ebO0rfnssk=?=

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=tencent_124D38DE9E366CE14C92CC18D015AEB80906@qq.com \
    --to=1534057243@qq.com \
    --cc=dev@dpdk.org \
    --cc=kannan.babu.ramia@intel.com \
    --cc=konstantin.ananyev@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).