<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/source3/include/debug.h, branch talloc-2.0.0</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/'/>
<entry>
<title>Provide the same set of helper functions for DEBUG in Samba 3 and Samba</title>
<updated>2008-10-11T18:44:19+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2008-10-11T18:44:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=2c4391e95002404fb2e1d09f97541c1ece1da46f'/>
<id>2c4391e95002404fb2e1d09f97541c1ece1da46f</id>
<content type='text'>
4, even though the macros are still different.

This makes it possible to use object code compiled with one DEBUG()
macro from the other sourceX directory.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
4, even though the macros are still different.

This makes it possible to use object code compiled with one DEBUG()
macro from the other sourceX directory.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix warnings on SuSE 9.0.</title>
<updated>2008-06-27T13:51:35+00:00</updated>
<author>
<name>Karolin Seeger</name>
<email>kseeger@samba.org</email>
</author>
<published>2008-06-27T13:51:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=e08943f8d855b85765615b2a231fb65d5788a2a6'/>
<id>e08943f8d855b85765615b2a231fb65d5788a2a6</id>
<content type='text'>
The macros "[un]likely" are already defined on SuSE 9.0.
Patch from Volker.
(This used to be commit 30d181c92463aecd6e649330d3645d86d5a17e43)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The macros "[un]likely" are already defined on SuSE 9.0.
Patch from Volker.
(This used to be commit 30d181c92463aecd6e649330d3645d86d5a17e43)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix tab_depth: it should not create an extra debug header.</title>
<updated>2008-01-23T07:16:37+00:00</updated>
<author>
<name>Michael Adam</name>
<email>obnox@samba.org</email>
</author>
<published>2008-01-22T23:30:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=a60b913a37d577d6bb52fbdb0987eb7c9ea9edcc'/>
<id>a60b913a37d577d6bb52fbdb0987eb7c9ea9edcc</id>
<content type='text'>
In pstring removal 4ae4b23586, the behaviour of tab_depth was
changed to create an extra debug header (by using the DEBUGLVL
macro).

This extracts the debug level check from DEBUGLVL into
a macro CHECK_DEBUGLVL without the debug header creation
and uses this instead of DEBUGLVL in tab_depth.

Michael
(This used to be commit cbc7d921fa696e6c3c5197ad9f87442ba679df82)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In pstring removal 4ae4b23586, the behaviour of tab_depth was
changed to create an extra debug header (by using the DEBUGLVL
macro).

This extracts the debug level check from DEBUGLVL into
a macro CHECK_DEBUGLVL without the debug header creation
and uses this instead of DEBUGLVL in tab_depth.

Michael
(This used to be commit cbc7d921fa696e6c3c5197ad9f87442ba679df82)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the non-gcc branch of "likely"</title>
<updated>2007-12-27T23:12:14+00:00</updated>
<author>
<name>Volker Lendecke</name>
<email>vl@samba.org</email>
</author>
<published>2007-12-27T23:12:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=94ee39c23f6e4a8c31701240795c288299d6bb08'/>
<id>94ee39c23f6e4a8c31701240795c288299d6bb08</id>
<content type='text'>
(This used to be commit 1e07368b5f96e4ada622682e38d260eb0c6185f2)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(This used to be commit 1e07368b5f96e4ada622682e38d260eb0c6185f2)
</pre>
</div>
</content>
</entry>
<entry>
<title>Wrap the DEBUG checks in a "unlikely"</title>
<updated>2007-12-27T19:19:17+00:00</updated>
<author>
<name>Volker Lendecke</name>
<email>vl@samba.org</email>
</author>
<published>2007-12-27T16:41:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=ee8212472d29a5a23011d0331ad693494dcd1034'/>
<id>ee8212472d29a5a23011d0331ad693494dcd1034</id>
<content type='text'>
On my Laptop with some limited netbench runs this gains about 1.5% of
performance. When looking at the assembler output I would suspect the biggest
gain is by the fact that with this in place the calls to the debug functions is
moved to the function end, out of the way of the normal code paths. valgrind
tests pending I would suspect this to be much more cache friendly.

Comments?

Volker
(This used to be commit 51448a9dca95de9d35dd8eea68fde2554cb69921)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On my Laptop with some limited netbench runs this gains about 1.5% of
performance. When looking at the assembler output I would suspect the biggest
gain is by the fact that with this in place the calls to the debug functions is
moved to the function end, out of the way of the normal code paths. valgrind
tests pending I would suspect this to be much more cache friendly.

Comments?

Volker
(This used to be commit 51448a9dca95de9d35dd8eea68fde2554cb69921)
</pre>
</div>
</content>
</entry>
<entry>
<title>More pstring removal. This one was tricky. I had to add</title>
<updated>2007-11-15T22:19:52+00:00</updated>
<author>
<name>Jeremy Allison</name>
<email>jra@samba.org</email>
</author>
<published>2007-11-15T22:19:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=68be9a820059ee96dd26c527efd7c14e679d3f2c'/>
<id>68be9a820059ee96dd26c527efd7c14e679d3f2c</id>
<content type='text'>
one horror (pstring_clean_name()) which will have to
remain until I've removed all pstrings from the client code.
Jeremy.
(This used to be commit 1ea3ac80146b83c2522b69e7747c823366a2b47d)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
one horror (pstring_clean_name()) which will have to
remain until I've removed all pstrings from the client code.
Jeremy.
(This used to be commit 1ea3ac80146b83c2522b69e7747c823366a2b47d)
</pre>
</div>
</content>
</entry>
<entry>
<title>RIP BOOL. Convert BOOL -&gt; bool. I found a few interesting</title>
<updated>2007-10-19T00:40:25+00:00</updated>
<author>
<name>Jeremy Allison</name>
<email>jra@samba.org</email>
</author>
<published>2007-10-19T00:40:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=30191d1a5704ad2b158386b511558972d539ce47'/>
<id>30191d1a5704ad2b158386b511558972d539ce47</id>
<content type='text'>
bugs in various places whilst doing this (places that assumed
BOOL == int). I also need to fix the Samba4 pidl generation
(next checkin).
Jeremy.
(This used to be commit f35a266b3cbb3e5fa6a86be60f34fe340a3ca71f)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
bugs in various places whilst doing this (places that assumed
BOOL == int). I also need to fix the Samba4 pidl generation
(next checkin).
Jeremy.
(This used to be commit f35a266b3cbb3e5fa6a86be60f34fe340a3ca71f)
</pre>
</div>
</content>
</entry>
<entry>
<title>r25434: Add the option to print the debug class (DBGC_CLASS) in the debug header.</title>
<updated>2007-10-10T17:31:05+00:00</updated>
<author>
<name>Michael Adam</name>
<email>obnox@samba.org</email>
</author>
<published>2007-09-30T08:07:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=b6a6fbd49309630e00983f9c2e654b805336ffae'/>
<id>b6a6fbd49309630e00983f9c2e654b805336ffae</id>
<content type='text'>
Control this by a new boolean smb.conf option "debug class" which is
by default set to "no" to keep the default debug header unchanged.

Michael

Note: You need to make clean for this patch.
(This used to be commit 066a46ba91ca734d9e20cb9d6db36fec209a27d7)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Control this by a new boolean smb.conf option "debug class" which is
by default set to "no" to keep the default debug header unchanged.

Michael

Note: You need to make clean for this patch.
(This used to be commit 066a46ba91ca734d9e20cb9d6db36fec209a27d7)
</pre>
</div>
</content>
</entry>
<entry>
<title>r25416: Add registry debug class.</title>
<updated>2007-10-10T17:31:03+00:00</updated>
<author>
<name>Günther Deschner</name>
<email>gd@samba.org</email>
</author>
<published>2007-09-28T23:03:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=d3dd14b70e1b0d25c75513bb8c3f5ecca8515ed4'/>
<id>d3dd14b70e1b0d25c75513bb8c3f5ecca8515ed4</id>
<content type='text'>
Guenther
(This used to be commit b28dd747cb5a3d0eee865076eb4733dc123a6968)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Guenther
(This used to be commit b28dd747cb5a3d0eee865076eb4733dc123a6968)
</pre>
</div>
</content>
</entry>
<entry>
<title>r23784: use the GPLv3 boilerplate as recommended by the FSF and the license text</title>
<updated>2007-10-10T17:28:22+00:00</updated>
<author>
<name>Andrew Tridgell</name>
<email>tridge@samba.org</email>
</author>
<published>2007-07-10T00:52:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=5e54558c6dea67b56bbfaba5698f3a434d3dffb6'/>
<id>5e54558c6dea67b56bbfaba5698f3a434d3dffb6</id>
<content type='text'>
(This used to be commit b0132e94fc5fef936aa766fb99a306b3628e9f07)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(This used to be commit b0132e94fc5fef936aa766fb99a306b3628e9f07)
</pre>
</div>
</content>
</entry>
</feed>
