<div dir="ltr">Thanks Kaleb for your reply, I will try it and will share the result.<div><br></div><div><br></div><div>Regards</div><div>Mohit Agrawal</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 27, 2017 at 5:33 PM, Kaleb S. KEITHLEY <span dir="ltr">&lt;<a href="mailto:kkeithle@redhat.com" target="_blank">kkeithle@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 09/27/2017 04:17 AM, Mohit Agrawal wrote:<br>
&gt; Niels,<br>
&gt;<br>
&gt;    Thanks for your reply, I think these built-in function provides by<br>
&gt; gcc and it should support most of the architecture.<br>
&gt;    In your view what could be the archietecure that does not support<br>
&gt; these builtin function ??<br>
</span>see<br>
<br>
<br>
<a href="https://gcc.gnu.org/onlinedocs/gcc-7.2.0/gcc/_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins" rel="noreferrer" target="_blank">https://gcc.gnu.org/<wbr>onlinedocs/gcc-7.2.0/gcc/_<wbr>005f_005fsync-Builtins.html#g_<wbr>t_005f_005fsync-Builtins</a>,<br>
<br>
<br>
<a href="https://gcc.gnu.org/onlinedocs/gcc-7.2.0/gcc/_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins" rel="noreferrer" target="_blank">https://gcc.gnu.org/<wbr>onlinedocs/gcc-7.2.0/gcc/_<wbr>005f_005fatomic-Builtins.html#<wbr>g_t_005f_005fatomic-Builtins</a>,<br>
and<br>
<br>
  <a href="https://llvm.org/docs/Atomics.html" rel="noreferrer" target="_blank">https://llvm.org/docs/Atomics.<wbr>html</a><br>
<br>
The _legacy_ __sync*() functions have been superceded by the __atomic*()<br>
functions.<br>
<br>
A quick search seems to suggest that ARM has atomic insns since armv6.<br>
Fedora supports armv7hl and aarch64 and IMO ARM should be okay in this<br>
regard.<br>
<br>
A ten year old gcc bug report<br>
(<a href="https://gcc.gnu.org/bugzilla/show_bug.cgi?id=34115" rel="noreferrer" target="_blank">https://gcc.gnu.org/bugzilla/<wbr>show_bug.cgi?id=34115</a>) speaks to __sync*<br>
(and now __atomic* ?) not being supported on the i386 and by extension<br>
to i686 because of how glibc was built for most distributions back then.<br>
We (gluster) are conservative in this regard, but frankly, since hardly<br>
anyone runs 32-bit these days, the perf hit of not using atomic is not a<br>
serious concern.<br>
<br>
It&#39;s easy to fall into the trap of saying &quot;it works on my box.&quot; Where<br>
&quot;my box&quot; is a x86_64 machine running latest {Fedora,Debian,whatever} but<br>
please keep in mind that even Fedora runs on i686, x86_64, armv7hl,<br>
aarch64, ppc64, ppc64le, and s390x these days. IMO we don&#39;t want to fill<br>
our source with lots of #ifdef glop if we can avoid it.<br>
<br>
Clang/LLVM supports __sync*() and __atomic*(), and between Clang and gcc<br>
I&#39;d say that covers pretty much all the distributions we care about,<br>
e.g. Linux and *BSD, and even many we don&#39;t care so much about any more.<br>
<br>
I&#39;d say proceed with caution, but proceed. ;-)<br>
<span class=""><br>
<br>
&gt;     <br>
&gt;<br>
&gt; Regards<br>
&gt; Mohit Agrawal<br>
&gt;<br>
&gt; On Wed, Sep 27, 2017 at 1:20 PM, Niels de Vos &lt;<a href="mailto:ndevos@redhat.com">ndevos@redhat.com</a><br>
</span><div><div class="h5">&gt; &lt;mailto:<a href="mailto:ndevos@redhat.com">ndevos@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;     On Wed, Sep 27, 2017 at 12:55:37PM +0530, Mohit Agrawal wrote:<br>
&gt;     &gt; Hi,<br>
&gt;     &gt;<br>
&gt;     &gt;    I was checking code of internal data structures (dict,fd,rpc_clnt etc.)<br>
&gt;     &gt; those we use in glusterfs to store data.<br>
&gt;     &gt;    Usually we use common pattern to take reference of data structure in<br>
&gt;     &gt; xlator level, in ref function we do take lock(mutex_lock)<br>
&gt;     &gt;    and update(increase) reference counter and in unref function we do take<br>
&gt;     &gt; lock and decrease reference counter and<br>
&gt;     &gt;    check if ref counter is become 0 after decrease then destroy object.<br>
&gt;     &gt;<br>
&gt;     &gt;    I think to update reference counter we don&#39;t need to take a lock, we can<br>
&gt;     &gt; use atomic in-built function those<br>
&gt;     &gt;    can improve performance<br>
&gt;<br>
&gt;     The below is not portable for all architectures. However we have<br>
&gt;     refcount.h in libglusterfs/src/ which hides the portability things. One<br>
&gt;     of the big advantages to use this, is that the code for reference<br>
&gt;     counting is the same everywhere. Some structures have been updated with<br>
&gt;     GF_REF_* macros, more can surely be done.<br>
&gt;<br>
&gt;     For other more basic counters that do not function as reference counter,<br>
&gt;     the libglusterfs/src/atomic.h macros can be used. The number of lock<br>
&gt;     instructions on modern architectures can be reduced considerably this<br>
&gt;     way. It will likely come with a performance increase, but the usage of a<br>
&gt;     standard API makes the code simpler to understand and that is my main<br>
&gt;     interest :)<br>
&gt;<br>
&gt;     Obviously I&#39;m all for replacing the lock+count+unlock sequences for many<br>
&gt;     structures!<br>
&gt;<br>
&gt;     Thanks,<br>
&gt;     Niels<br>
&gt;<br>
&gt;<br>
&gt;     &gt;<br>
&gt;     &gt;    For ex: Below is a example for specific to dict_ref/unref<br>
&gt;     &gt;    To increase refCount we can use below built-in function<br>
&gt;     &gt;    dict_ref<br>
&gt;     &gt;    {<br>
&gt;     &gt;        __atomic_add_fetch (&amp;this-&gt;refcount, 1, __ATOMIC_SEQ_CST);<br>
&gt;     &gt;<br>
&gt;     &gt;    }<br>
&gt;     &gt;<br>
&gt;     &gt;    dict_unref<br>
&gt;     &gt;    {<br>
&gt;     &gt;       __atomic_sub_fetch (&amp;this-&gt;refcount, 1, __ATOMIC_SEQ_CST);<br>
&gt;     &gt;       __atomic_load (&amp;this-&gt;refcount, &amp;ref, __ATOMIC_SEQ_CST);<br>
&gt;     &gt;    }<br>
&gt;     &gt;<br>
&gt;     &gt;    In the same way we can use for all other shared data-structure also in<br>
&gt;     &gt; case of take/release reference.<br>
&gt;     &gt;<br>
&gt;     &gt;    I have not tested yet how much performance improvement we can gain but i<br>
&gt;     &gt; think there should be some improvement.<br>
&gt;     &gt;   Please share your input on this, appreciate your input.<br>
&gt;     &gt;<br>
&gt;     &gt; Regards<br>
&gt;     &gt; Mohit Agrawal<br>
&gt;<br>
&gt;     &gt; ______________________________<wbr>_________________<br>
&gt;     &gt; Gluster-devel mailing list<br>
</div></div>&gt;     &gt; <a href="mailto:Gluster-devel@gluster.org">Gluster-devel@gluster.org</a> &lt;mailto:<a href="mailto:Gluster-devel@gluster.org">Gluster-devel@gluster.<wbr>org</a>&gt;<br>
&gt;     &gt; <a href="http://lists.gluster.org/mailman/listinfo/gluster-devel" rel="noreferrer" target="_blank">http://lists.gluster.org/<wbr>mailman/listinfo/gluster-devel</a><br>
&gt;     &lt;<a href="http://lists.gluster.org/mailman/listinfo/gluster-devel" rel="noreferrer" target="_blank">http://lists.gluster.org/<wbr>mailman/listinfo/gluster-devel</a><wbr>&gt;<br>
<div class="HOEnZb"><div class="h5">&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; ______________________________<wbr>_________________<br>
&gt; Gluster-devel mailing list<br>
&gt; <a href="mailto:Gluster-devel@gluster.org">Gluster-devel@gluster.org</a><br>
&gt; <a href="http://lists.gluster.org/mailman/listinfo/gluster-devel" rel="noreferrer" target="_blank">http://lists.gluster.org/<wbr>mailman/listinfo/gluster-devel</a><br>
&gt;<br>
<br>
</div></div><span class="HOEnZb"><font color="#888888">--<br>
<br>
Kaleb<br>
</font></span></blockquote></div><br></div>