Age | Commit message (Collapse) | Author | Files | Lines |
|
Michael
(cherry picked from commit 38855a9f145b54d05f4a508562fc1a6595e0d895)
(This used to be commit 303a3eb128b410be0f4ebb936cd3b983e639c07f)
|
|
(cherry picked from commit 51769f5cfc0f3a9f85ea533598a1f769e108d075)
(This used to be commit da98f4d223997709b42b4f05ab94d564261f5aee)
|
|
(cherry picked from parts of commit 35c8ebdca2612b52cd3eb2aafd35041d17173722)
Michael
(This used to be commit a780c0594aeea3705d601a327aa04d9182060cbd)
|
|
(cherry picked from commit 2b8939975267fc4774bccd2a35ea9a35129d0a2b)
(This used to be commit 7710d3dea350a85348d46747e4f4cde2b20741de)
|
|
(cherry picked from commit 75ffc2c50d70e6f4108c3e6843c8d2bb212f6d9e)
(This used to be commit 6f8165e4b064f37335e2b0b185ae6433c06a061a)
|
|
Not sure if we can produce one from the other, so I manually made
them equal for now.
Michael
(cherry picked from commit 1c14c457bea75fb3055712547cca501e8ef3fc20)
(This used to be commit 0d9ae82f51302c9755b6e50f1df88eb2a079f12a)
|
|
(cherry picked from parts of commit 91d7ba5202e6c375456a42c2c6861f63c7fcfc20)
Michael
(This used to be commit 4b03f88c1ed8c1a2c1e5e7d461ca2d64a8d6a054)
|
|
(cherry picked from parts of c8947fda23eb874a7694bdee1b4de605744c2769)
Michael
(This used to be commit 77664bc482071798571096a299e7d8b190f53797)
|
|
bunch of {}'s.
- Start working on Python equivalents for various EJS tests.
- Fix regression in argument order for reg_diff_apply() in EJS bindings.
(cherry picked from talloc part of commit c550c03372cb260b78f6a6c132e70571bc4cb852)
Michael
(This used to be commit a146145c28cc355fed47b8a1f322311ffc1a51ab)
|
|
(cherry picked from talloc parts of commit 760fcc8bfa2a7cd7641465cb3bae889e9e0fbc75)
Michael
(This used to be commit f4c59316b9251477556dd22cdd246607f4dfa845)
|
|
(cherry picked from commit 7962d221fcb877c9fd3bbc890827338de54ca94a)
(This used to be commit d6198f2bd7d13b5f30bcc46e12026a00f52d9adc)
|
|
(cherry picked from commit 3320bd401f7b669bd62f83bf16a1c16ad0543a5c)
(This used to be commit f1267f74a91374692c3564d783c527f94035b323)
|
|
(cherry picked from talloc parts of commit dfd5b456f932268e2b1a82e2775037d356b9483e)
Michael
(This used to be commit 8276ec7596b41980aea3f93949edd224fe842fa5)
|
|
(cherry picked from parts of commit 8625cd403ba3a7d2b1b1fccfeb5efd7e21de0135)
Michael
(This used to be commit 22d48224d3235403b916c98c92915165fe7ef330)
|
|
(cherry picked from parts of commit ef790ebf3a712dbbb85d6af65c804199c2c084fc)
Michael
(This used to be commit 8e35bbeac286c3b8d64d69ebe9bb4a8f5405a9c0)
|
|
(cherry picked from commit 02d259c2c45c03dbfcd16173df93d7ba96ed1419)
(This used to be commit 5938a732381abed9f5da1db505626b354fe7293e)
|
|
metze
(cherry picked from parts of commit c179807165b84dd832ab64f794034960668e5957.
The changes to lib/replaces have already been merged.)
Michael
(This used to be commit 6c092918725019274cd26218168c5b551ab3c7d2)
|
|
metze
(cherry picked from commit 7fecb8f3cd9f5f69dce7b9e566011e5de1e01a4a)
(This used to be commit ce3625a3866376d78edc23b137f41be72f07e5eb)
|
|
(cherry picked from parts of commit 91133d27110ee6447dbc64f1c8d52cb90ca1a86c)
Michael
(This used to be commit f231d03e53dcf291e0cb8870e531989ab855eae0)
|
|
that.
(cherry picked from parts of commit 228dd6830eb9c91287bb3e0233d8b3a404ff3676)
Michael
(This used to be commit 7a7dcd9b1265b8f031c9a5e9c4cfa89216827a28)
|
|
(cherry picked from commit 40a8cd0d2fd4d10110243ee75ff92bef73bb06b9)
(This used to be commit 42b56f77ff88f8a9dccd7a8ac7df789d0223c945)
|
|
(cherry picked from commit 3692ba8299d4177289ca401fa467143ad14ccad4)
(This used to be commit ddfc86b71d7e6fa3d1bd6fcaca4f31dd262e84d2)
|
|
(This used to be commit ee905a085fff5410d02c3e5fa2664e989de4afd4)
|
|
(This used to be commit 0272b46515b4c4515d5cad8e86fab61d8e91e29e)
|
|
(This used to be commit d89e42f1d2faa018c584025296d6be8195cbcf20)
|
|
A talloc pool is a chunk of memory that can be used as a context for further
talloc calls. Allocations with the pool as the parent just chew from that
memory by incrementing a pointer. If the talloc pool is full, then we fall back
to the normal system-level malloc(3) to get memory.
The use case for talloc pools is the transient memory that is used for handling
a single SMB request. Incrementing a pointer will be way faster than any malloc
implementation.
There is a downside of this: If you use talloc_steal() to move something out of
the pool, the whole pool memory is kept around until the last object inside the
pool is freed. So if you talloc_free() the pool, it might happen that the
memory is freed later. So don't hang anything off a talloc pool that should
live long.
Volker
(This used to be commit 287e29d988813007eeebc0c2bef3b46ab8bedee9)
|
|
Michael
(This used to be commit 3a4bf4b7c3081048f0d5491dae6610388c268c2f)
|
|
Michael
(This used to be commit 45b219642c529865a898625eeb0433c60b233867)
|
|
(This used to be commit 28a72ebd4541fb54f284da49081345e54130c75a)
|
|
metze
(This used to be commit 84ebb6cac224cabf3856a632de80a8a9c687329b)
|
|
Jeremy.
(This used to be commit 2243a73d650319208aebbbaf65dfba2a508a7c10)
|
|
truncated strings.
Jeremy.
(This used to be commit 93c42fd9b52d9135d8c8b52e97cf342c1c5b5010)
|
|
as TALLOC_ABORT() is defined to abort() by default
wrap it into a function so that the function name
in the backtrace shows what happens.
metze
(This used to be commit ddbe971030070ab1b9fc37b8b0ac44a3d9303fe4)
|
|
(This used to be commit 256301a21a1f393b5a2b89d4dce47b7d4f7bf9be)
|
|
(This used to be commit 87c91e4362c51819032bfbebbb273c52e203b227)
|
|
(This used to be commit 43cd589773148fe3d243892768ce187604dd0c33)
|
|
(This used to be commit c676a971142d7176fd5dbf21405fca14515a0a76)
|
|
(This used to be commit 1b78cace504f60c0f525765fbf59d9cc6506cd4d)
|
|
Jeremy.
(This used to be commit c2f7ab1c175ecff0cf44d0bbc4763ba9f7d7803f)
|
|
metze
(This used to be commit 86c510e3198e03ed6efa61b27530bbb008f6802b)
|
|
and out of talloc at tridge's request.
Jeremy.
(This used to be commit da78488b86c464b6861d36398cca7524ad5906fe)
|
|
Jeremy.
(This used to be commit fcbfa2c99175780524d2258885410c79bbb12d6e)
|
|
prototypes.
Jeremy.
(This used to be commit 06b47f3d72d0ca1c83842dff3425d8dacd283fff)
|
|
return NULL on size == 0 varients.
Jeremy.
(This used to be commit 1283da1bf8ebe458cf84ee4a703909945cdfcd88)
|
|
metze
(This used to be commit 7fab12b34a818f029f4285a59d6e49768b7f8e79)
|
|
protect #define __location__ with an #ifndef
metze
(This used to be commit 4c93c05542c5a238b1b7a5cd9b75f9f852c0ad4d)
|
|
(This used to be commit 04f6f01dfeda2fa076209a94cdf8e59f6ce47008)
|
|
- make most static functions inline
- handle NULL pointers in talloc_parent_chunk()
- use talloc_parent_chunk() in talloc_parent_name()
to fix a bug found by the IBM checker
metze
(This used to be commit c718eb7a7c3cdc4acb25f303a73a3ca478c27af0)
|
|
(This used to be commit e710a7d39a662a1a339f3f71c4b051fde1bb5a16)
|
|
(This used to be commit 842599a7fd1217b498dc2d241d39ed604cf0da7d)
|