diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-04 16:54:04 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-05 11:06:23 +0200 |
commit | 300667e4a9f02104fc8759dd846ea41f400441bf (patch) | |
tree | d0795152861ba866c49778e59fc5f4a48b98e2cc /source3/lib | |
parent | 849f72b254ee52501ba46e8419938d3bf5e31900 (diff) | |
download | samba-300667e4a9f02104fc8759dd846ea41f400441bf.tar.gz samba-300667e4a9f02104fc8759dd846ea41f400441bf.tar.bz2 samba-300667e4a9f02104fc8759dd846ea41f400441bf.zip |
s3: Pass procid_self() explicitly to messaging_ctdbd_connection()
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/dbwrap_ctdb.c | 11 | ||||
-rw-r--r-- | source3/lib/g_lock.c | 9 | ||||
-rw-r--r-- | source3/lib/messages_ctdbd.c | 4 | ||||
-rw-r--r-- | source3/lib/util.c | 4 |
4 files changed, 17 insertions, 11 deletions
diff --git a/source3/lib/dbwrap_ctdb.c b/source3/lib/dbwrap_ctdb.c index bef91cb1ec..321a071aaa 100644 --- a/source3/lib/dbwrap_ctdb.c +++ b/source3/lib/dbwrap_ctdb.c @@ -794,7 +794,7 @@ static int db_ctdb_transaction_commit(struct db_context *db) again: /* tell ctdbd to commit to the other nodes */ - rets = ctdbd_control_local(messaging_ctdbd_connection(), + rets = ctdbd_control_local(messaging_ctdbd_connection(procid_self()), CTDB_CONTROL_TRANS3_COMMIT, h->ctx->db_id, 0, db_ctdb_marshall_finish(h->m_write), @@ -1005,7 +1005,9 @@ again: ((struct ctdb_ltdb_header *)ctdb_data.dptr)->dmaster : -1, get_my_vnn())); - status = ctdbd_migrate(messaging_ctdbd_connection(),ctx->db_id, key); + status = ctdbd_migrate( + messaging_ctdbd_connection(procid_self()), ctx->db_id, + key); if (!NT_STATUS_IS_OK(status)) { DEBUG(5, ("ctdb_migrate failed: %s\n", nt_errstr(status))); @@ -1110,7 +1112,8 @@ static int db_ctdb_fetch(struct db_context *db, TALLOC_CTX *mem_ctx, SAFE_FREE(ctdb_data.dptr); /* we weren't able to get it locally - ask ctdb to fetch it for us */ - status = ctdbd_fetch(messaging_ctdbd_connection(),ctx->db_id, key, mem_ctx, data); + status = ctdbd_fetch(messaging_ctdbd_connection(procid_self()), + ctx->db_id, key, mem_ctx, data); if (!NT_STATUS_IS_OK(status)) { DEBUG(5, ("ctdbd_fetch failed: %s\n", nt_errstr(status))); return -1; @@ -1288,7 +1291,7 @@ struct db_context *db_open_ctdb(TALLOC_CTX *mem_ctx, db_ctdb->transaction = NULL; db_ctdb->db = result; - conn = messaging_ctdbd_connection(); + conn = messaging_ctdbd_connection(procid_self()); if (!NT_STATUS_IS_OK(ctdbd_db_attach(conn, name, &db_ctdb->db_id, tdb_flags))) { DEBUG(0, ("ctdbd_db_attach failed for %s\n", name)); diff --git a/source3/lib/g_lock.c b/source3/lib/g_lock.c index d7828e228f..49f719b5fc 100644 --- a/source3/lib/g_lock.c +++ b/source3/lib/g_lock.c @@ -312,7 +312,8 @@ NTSTATUS g_lock_lock(struct g_lock_ctx *ctx, const char *name, #ifdef CLUSTER_SUPPORT if (lp_clustering()) { - status = ctdb_watch_us(messaging_ctdbd_connection()); + status = ctdb_watch_us( + messaging_ctdbd_connection(procid_self())); if (!NT_STATUS_IS_OK(status)) { DEBUG(10, ("could not register retry with ctdb: %s\n", nt_errstr(status))); @@ -387,7 +388,9 @@ NTSTATUS g_lock_lock(struct g_lock_ctx *ctx, const char *name, #ifdef CLUSTER_SUPPORT if (lp_clustering()) { - struct ctdbd_connection *conn = messaging_ctdbd_connection(); + struct ctdbd_connection *conn; + + conn = messaging_ctdbd_connection(procid_self()); r_fds = &_r_fds; FD_ZERO(r_fds); @@ -592,7 +595,7 @@ NTSTATUS g_lock_unlock(struct g_lock_ctx *ctx, const char *name) #ifdef CLUSTER_SUPPORT if (lp_clustering()) { - ctdb_unwatch(messaging_ctdbd_connection()); + ctdb_unwatch(messaging_ctdbd_connection(procid_self())); } #endif return status; diff --git a/source3/lib/messages_ctdbd.c b/source3/lib/messages_ctdbd.c index 871334649d..9b8fafe8d4 100644 --- a/source3/lib/messages_ctdbd.c +++ b/source3/lib/messages_ctdbd.c @@ -38,7 +38,7 @@ struct messaging_ctdbd_context { static struct ctdbd_connection *global_ctdbd_connection; static int global_ctdb_connection_pid; -struct ctdbd_connection *messaging_ctdbd_connection(void) +struct ctdbd_connection *messaging_ctdbd_connection(struct server_id id) { if (global_ctdb_connection_pid == 0 && global_ctdbd_connection == NULL) { @@ -50,7 +50,7 @@ struct ctdbd_connection *messaging_ctdbd_connection(void) DEBUG(0,("event_context_init failed\n")); } - msg = messaging_init(NULL, procid_self(), ev); + msg = messaging_init(NULL, id, ev); if (!msg) { DEBUG(0,("messaging_init failed\n")); return NULL; diff --git a/source3/lib/util.c b/source3/lib/util.c index 2a4d0501fe..dc243ecf1d 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1294,8 +1294,8 @@ bool process_exists(const struct server_id pid) } #ifdef CLUSTER_SUPPORT - return ctdbd_process_exists(messaging_ctdbd_connection(), pid.vnn, - pid.pid); + return ctdbd_process_exists(messaging_ctdbd_connection(procid_self()), + pid.vnn, pid.pid); #else return False; #endif |