Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-02-27 | Use talloc_tos() in regkey_access_check() | Volker Lendecke | 1 | -13/+2 | |
2009-02-26 | s3:registry: tighten the subkey loop in reg_deletekey_recursive() | Michael Adam | 1 | -16/+13 | |
and loop from the end to the beginning so that we don't need to rehash the subkeys... This gets "net conf drop" with 2000 shares down to 14 seconds on my box. Michael | |||||
2009-02-26 | s3:registry: use delete_reg_subkey() in reg_deletekey() | Michael Adam | 1 | -15/+1 | |
This further speeds up net conf drop. Michael | |||||
2009-02-26 | s3:registry: implement delete_subkey in the smbconf backend | Michael Adam | 1 | -0/+6 | |
delegating the call to the db backend Michael | |||||
2009-02-26 | s3:registry: implement delete_subkey in the db backend | Michael Adam | 1 | -0/+68 | |
Michael | |||||
2009-02-26 | s3:registry: add a delete_subkey method to the backend ops. | Michael Adam | 1 | -0/+9 | |
This is to provide a more atomic means of deleting a subkey of a key. Michael | |||||
2009-02-26 | s3:registry: refactor deletion of various subkey lists out of regdb_store_keys() | Michael Adam | 1 | -30/+31 | |
Micheal | |||||
2009-02-26 | s3:registry: streamline and cleanup regdb_set_secdesc() somewhat. | Michael Adam | 1 | -15/+5 | |
Michael | |||||
2009-02-26 | s3:registry: refactor deletion of value/secdesc/subkey list tdb records out | Michael Adam | 1 | -43/+73 | |
of regdb_store_values(). Michael | |||||
2009-02-26 | s3:registry: streamline reg_deletekey() somewhat. | Michael Adam | 1 | -25/+19 | |
use W_ERROR_... macros and separate assignments from checks Michael | |||||
2009-02-26 | s3:registry: use create_reg_subkey() in reg_createkey(). | Michael Adam | 1 | -8/+2 | |
Instead of calling store_reg_keys() On my box, importing 2000 shares into an empty smbconf key now takes some 32 seconds. Michael | |||||
2009-02-26 | s3:registry: implement create_subkey for the smbconf backend | Michael Adam | 1 | -0/+6 | |
by delegating to the db backend Michael | |||||
2009-02-26 | s3:registry: implement create_subkey for the db backend. | Michael Adam | 1 | -0/+67 | |
Michael | |||||
2009-02-26 | s3:registry: add a create_subkey method to the backend ops. | Michael Adam | 1 | -0/+9 | |
This is to provide a more atomic means of adding a subkey of a key. Michael | |||||
2009-02-26 | s3:registry: hash the list of subkeys in the regsubkey_ctr | Michael Adam | 2 | -26/+107 | |
This removes many loops over all the arrays (from regsubkey_ctr_key_exists) and thus reduces "net conf drop" from 1m55 to 48seconds and "net conf import" from 1m55 to 58 seconds for 2000 shares on my box. Michael | |||||
2009-02-26 | s3:registry: remove definition of regsubkey_ctr from the surface. | Michael Adam | 1 | -0/+6 | |
All access is now through accessor functions in reg_objects.c This allows for performance tuning under the hood in the next step. Michael | |||||
2009-02-26 | s3:registry: use regsubkey_ctr_init() in reg_eventlog.c | Michael Adam | 1 | -4/+10 | |
Michael | |||||
2009-02-26 | s3:registry: use regsubkey_ctr_get_seqnum() in reg_backend_db.c | Michael Adam | 1 | -1/+1 | |
Michael | |||||
2009-02-26 | s3:registry: use regsubkey_ctr_set_seqnum() in reg_backend_db.c | Michael Adam | 1 | -1/+4 | |
Michael | |||||
2009-02-26 | s3:registry: use regsubkey_ctr_init() in reg_backend_db.c | Michael Adam | 1 | -8/+14 | |
instead of using talloc directly. Michael | |||||
2009-02-26 | s3:registry: use regsubkey_ctr_init() in reg_api.c | Michael Adam | 1 | -13/+10 | |
instead of using talloc on struct regsubkey_ctr. Michael | |||||
2009-02-26 | s3:registry: add regsubkey_ctr_get_seqnum() to hide implementation | Michael Adam | 1 | -0/+9 | |
Michael | |||||
2009-02-26 | s3:registry: add regsubkey_ctr_set_seqnum to hide implementation from caller. | Michael Adam | 1 | -0/+11 | |
Michael | |||||
2009-02-26 | s3:registry: add a regsubkey_ctr_init function for allocating a regsubkey_ctr | Michael Adam | 1 | -1/+15 | |
Michael | |||||
2009-02-26 | s3:registry: fix a comment | Michael Adam | 1 | -3/+3 | |
Michael | |||||
2009-02-26 | s3:registry: don't directly access key->subkeys->subkeys[] in reg_backend_db.c | Michael Adam | 1 | -3/+5 | |
Use the reg_objects accessor regsubkey_ctr_specific_key() instead. Michael | |||||
2009-02-26 | s3:registry: don't directly access key->subkeys->subkeys[] in reg_api.c | Michael Adam | 1 | -2/+5 | |
Use the reg_objects accessor regsubkey_ctr_specific_key() instead. Michael | |||||
2009-02-26 | s3:registry: don't directly access key->subkeys->num_subkeys in reg_backend_db. | Michael Adam | 1 | -12/+16 | |
Use the reg_objects api instead. Michael | |||||
2009-02-26 | s3:registry: don't directly access key->subkeys->num_subkeys in reg_api.c | Michael Adam | 1 | -5/+5 | |
Use the reg_objects api instead. Michael | |||||
2009-02-26 | s3:registry: replace typedef "REGSUBKEY_CTR" by "struct regsubkey_ctr" | Michael Adam | 15 | -56/+56 | |
This paves the way for hiding the typedef and the implementation from the surface. Michael | |||||
2009-02-26 | Revert "Fix a O(n^2) algorithm in regdb_fetch_keys()" | Michael Adam | 1 | -27/+5 | |
This reverts commit a13f065bad0f4d21a67e68b743f17f45bf0a4691. This fix is reverted, because the speedup is going to move further down into reg_objects.c. The unsorted list of subkey names is going to be indexed: This O(n^2) search bites us in more places. This re-establishes the abstraction of reg_objects.c. Michael | |||||
2009-02-26 | s3:registry: wrap deletekey_recursive in one big transaction. | Michael Adam | 1 | -2/+38 | |
This speeds up "net conf drop" with 2000 shares on my box from 4m40s to 1m50s, leaving virtually only cpu load. Michael | |||||
2009-02-26 | s3:registry: provide transaction_start|commit|cancel fns for the registry tdb | Michael Adam | 1 | -0/+18 | |
Michael | |||||
2009-02-26 | Wrap creating the sorted subkey cache in a transaction | Volker Lendecke | 1 | -3/+31 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2009-02-26 | Add a comment describing the sorted subkeys | Volker Lendecke | 1 | -0/+23 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2009-02-26 | Add sorted subkey cache | Volker Lendecke | 1 | -19/+174 | |
On my box this gets net conf list for 1000 records down to .1 seconds Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2009-02-23 | Quieten down a boatload of shadowed variable warnings on Solaris. | Jeremy Allison | 1 | -4/+4 | |
Makes real problems easier to spot. Jeremy. | |||||
2009-02-19 | Fix printf type warning. | Jeremy Allison | 1 | -2/+2 | |
Jeremy. | |||||
2009-02-19 | Fix a O(n^2) algorithm in regdb_fetch_keys() | Volker Lendecke | 1 | -5/+27 | |
2009-02-19 | Fix a buffer handling bug when adding lots of registry keys | Volker Lendecke | 1 | -9/+24 | |
This is *ancient*... From 2002, and nobody noticed until someone added lots of shares using net conf... :-) | |||||
2009-02-14 | Remove a pointless NULL check | Volker Lendecke | 1 | -3/+0 | |
2009-02-14 | Fix some nonempty blank lines | Volker Lendecke | 1 | -22/+22 | |
2009-01-28 | s3:registry: always provision the registry, not only in smbd. | Michael Adam | 2 | -8/+8 | |
This will make tools like "net registry" also fill the registry with the basic hives and keys. Michael | |||||
2009-01-01 | Add iconv_convenience argument to size functions. | Jelmer Vernooij | 2 | -3/+3 | |
2008-11-01 | Rename dos_errstr() to win_errstr() for consistency with Samba 4. | Jelmer Vernooij | 4 | -6/+6 | |
2008-10-31 | Unify se_access_check with the S4 code. Will make | Jeremy Allison | 1 | -1/+2 | |
calculation of SEC_FLAG_MAXIMUM_ALLOWED much easier for files. Jeremy. | |||||
2008-10-18 | Use separate make variables for libutil and libcrypto. | Jelmer Vernooij | 1 | -1/+1 | |
2008-10-14 | Use {u,}int64_t instead of SMB_BIG_{U,}INT. | Jelmer Vernooij | 1 | -5/+5 | |
2008-10-09 | Remove SEC_ACCESS. It's a uint32_t. | Jeremy Allison | 1 | -7/+3 | |
Jeremy. | |||||
2008-08-13 | first cut at adding full transactions for ctdb to samba3 | Andrew Tridgell | 1 | -3/+3 | |
(This used to be commit f91a3e0f7b7737c1d0667cd961ea950e2b93e592) |