diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-02-28 09:06:49 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-02-29 15:17:52 +0100 |
commit | 98dafd5eb1948bbe8a0d78814ab1cd1910477733 (patch) | |
tree | 81fab1ba23fd7073275778ef1095332d89dc8668 /source4/cluster | |
parent | 48270181bac1a640d085ce5f5a58329d69c7a1ac (diff) | |
download | samba-98dafd5eb1948bbe8a0d78814ab1cd1910477733.tar.gz samba-98dafd5eb1948bbe8a0d78814ab1cd1910477733.tar.xz samba-98dafd5eb1948bbe8a0d78814ab1cd1910477733.zip |
opendb: add odb_get_path()
metze
(This used to be commit 02071f151a22257d31f8a8b254625e2067e7b94d)
Diffstat (limited to 'source4/cluster')
-rw-r--r-- | source4/cluster/ctdb/opendb_ctdb.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/source4/cluster/ctdb/opendb_ctdb.c b/source4/cluster/ctdb/opendb_ctdb.c index 3d67162d6da..e84f2364d40 100644 --- a/source4/cluster/ctdb/opendb_ctdb.c +++ b/source4/cluster/ctdb/opendb_ctdb.c @@ -543,6 +543,25 @@ static NTSTATUS odb_ctdb_rename(struct odb_lock *lck, const char *path) } /* + get the path of an open file +*/ +static NTSTATUS odb_ctdb_get_path(struct odb_lock *lck, const char **path) +{ + struct opendb_file file; + NTSTATUS status; + + *path = NULL; + + status = odb_pull_record(lck, &file); + /* we don't ignore NT_STATUS_OBJECT_NAME_NOT_FOUND here */ + NT_STATUS_NOT_OK_RETURN(status); + + *path = file.path; + + return NT_STATUS_OK; +} + +/* update delete on close flag on an open file */ static NTSTATUS odb_ctdb_set_delete_on_close(struct odb_lock *lck, bool del_on_close) @@ -653,6 +672,7 @@ static const struct opendb_ops opendb_ctdb_ops = { .odb_close_file = odb_ctdb_close_file, .odb_remove_pending = odb_ctdb_remove_pending, .odb_rename = odb_ctdb_rename, + .odb_get_path = odb_ctdb_get_path, .odb_set_delete_on_close = odb_ctdb_set_delete_on_close, .odb_get_delete_on_close = odb_ctdb_get_delete_on_close, .odb_can_open = odb_ctdb_can_open, |