Changeset 657
- Timestamp:
- Nov 8, 2011, 7:01:01 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/server/lib/tdb/common/tdb_private.h ¶
r656 r657 38 38 #include "tdb.h" 39 39 40 #define TDB_TRACE 1 40 /* #define TDB_TRACE 1 */ 41 41 #ifndef HAVE_GETPAGESIZE 42 42 #define getpagesize() 0x2000 -
TabularUnified trunk/server/lib/tdb/common/transaction.c ¶
r656 r657 1020 1020 1021 1021 tdb_trace(tdb, "tdb_transaction_commit"); 1022 tdb_trace(tdb, "@todo: tdb_transaction_error");1023 1022 if (tdb->transaction->transaction_error) { 1024 1023 tdb->ecode = TDB_ERR_IO; … … 1028 1027 } 1029 1028 1030 tdb_trace(tdb, "@todo: tdb_transaction_nesting");1031 1029 if (tdb->transaction->nesting != 0) { 1032 1030 tdb->transaction->nesting--; … … 1034 1032 } 1035 1033 1036 tdb_trace(tdb, "@todo: tdb_null_transaction");1037 1034 /* check for a null transaction */ 1038 1035 if (tdb->transaction->blocks == NULL) { … … 1041 1038 } 1042 1039 1043 tdb_trace(tdb, "@todo: tdb_transaction_prepare");1044 1040 if (!tdb->transaction->prepared) { 1045 1041 int ret = _tdb_transaction_prepare_commit(tdb); … … 1049 1045 1050 1046 methods = tdb->transaction->io_methods; 1051 1052 tdb_trace(tdb, "@todo: tdb_transaction perform all the writes");1053 1047 1054 1048 /* perform all the writes */ … … 1086 1080 tdb->transaction->num_blocks = 0; 1087 1081 1088 tdb_trace(tdb, "@todo: tdb_transaction ensure the new data is on disk");1089 1082 /* ensure the new data is on disk */ 1090 1083 if (transaction_sync(tdb, 0, tdb->map_size) == -1) { … … 1104 1097 mtime changes when a transaction completes */ 1105 1098 #ifdef HAVE_UTIME 1106 tdb_trace(tdb, "@todo: tdb_transaction utime");1107 1099 utime(tdb->name, NULL); 1108 1100 #endif 1109 1101 1110 tdb_trace(tdb, "@todo: tdb_transaction need repack");1111 1102 need_repack = tdb->transaction->need_repack; 1112 1103 1113 1104 /* use a transaction cancel to free memory and remove the 1114 1105 transaction locks */ 1115 tdb_trace(tdb, "@todo: tdb_transaction cancel");1116 1106 _tdb_transaction_cancel(tdb); 1117 1107 1118 1108 if (need_repack) { 1119 tdb_trace(tdb, "@todo: tdb_transaction repack");1120 1109 return tdb_repack(tdb); 1121 1110 } -
TabularUnified trunk/server/source3/passdb/pdb_tdb.c ¶
r656 r657 339 339 int ret; 340 340 341 DEBUG(0,("@todo: tdbsam_convert: tdbsam_convert_backup\n"));342 341 /* We only need the update backup for local db's. */ 343 342 if (db_is_local(name) && !tdbsam_convert_backup(name, pp_db)) { … … 350 349 state.success = true; 351 350 352 DEBUG(0,("@todo: tdbsam_convert: transaction_start\n"));353 351 if (db->transaction_start(db) != 0) { 354 352 DEBUG(0, ("tdbsam_convert: Could not start transaction\n")); … … 356 354 } 357 355 358 DEBUG(0,("@todo: tdbsam_convert: tdbsam_upgrade_next_rid\n"));359 356 if (!tdbsam_upgrade_next_rid(db)) { 360 357 DEBUG(0, ("tdbsam_convert: tdbsam_upgrade_next_rid failed\n")); … … 362 359 } 363 360 364 DEBUG(0,("@todo: tdbsam_convert: traverse\n"));365 361 ret = db->traverse(db, tdbsam_convert_one, &state); 366 362 if (ret < 0) { … … 374 370 } 375 371 376 DEBUG(0,("@todo: tdbsam_convert: dbwrap_store_int32 major\n"));377 372 if (dbwrap_store_int32(db, TDBSAM_VERSION_STRING, 378 373 TDBSAM_VERSION) != 0) { … … 380 375 goto cancel; 381 376 } 382 DEBUG(0,("@todo: tdbsam_convert: dbwrap_store_int32 minor\n")); 377 383 378 if (dbwrap_store_int32(db, TDBSAM_MINOR_VERSION_STRING, 384 379 TDBSAM_MINOR_VERSION) != 0) { … … 387 382 } 388 383 389 DEBUG(0,("@todo: tdbsam_convert: transaction_commit\n"));390 384 if (db->transaction_commit(db) != 0) { 391 385 DEBUG(0, ("tdbsam_convert: Could not commit transaction\n")); … … 396 390 397 391 cancel: 398 DEBUG(0,("@todo: tdbsam_convert: transaction_cancel\n"));399 392 if (db->transaction_cancel(db) != 0) { 400 393 smb_panic("tdbsam_convert: transaction_cancel failed");
Note:
See TracChangeset
for help on using the changeset viewer.