1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

cleanup: use _ for local function

This commit is contained in:
Zdenek Kabelac 2015-11-09 16:37:48 +01:00
parent 3db5ba08b1
commit c2d5cfbdb8

View File

@ -829,7 +829,7 @@ static int vg_remove_if_missing(lvmetad_state *s, const char *vgid, int update_p
enum update_pvid_mode { UPDATE_ONLY, REMOVE_EMPTY, MARK_OUTDATED };
/* You need to be holding the pvid_to_vgid lock already to call this. */
static int update_pvid_to_vgid(lvmetad_state *s, struct dm_config_tree *vg,
static int _update_pvid_to_vgid(lvmetad_state *s, struct dm_config_tree *vg,
const char *vgid, int mode)
{
struct dm_config_node *pv;
@ -932,7 +932,7 @@ static int remove_metadata(lvmetad_state *s, const char *vgid, int update_pvids)
/* update_pvid_to_vgid will clear/free the pvid_to_vgid hash */
if (update_pvids && meta_lookup)
update_pvid_to_vgid(s, meta_lookup, "#orphan", 0);
(void) _update_pvid_to_vgid(s, meta_lookup, "#orphan", 0);
/* free the unmapped data */
@ -1050,7 +1050,7 @@ static int _update_metadata_new_vgid(lvmetad_state *s,
/*
* Temporarily orphan the PVs in the old metadata.
*/
if (!update_pvid_to_vgid(s, old_meta, "#orphan", 0)) {
if (!_update_pvid_to_vgid(s, old_meta, "#orphan", 0)) {
ERROR(s, "update_metadata_new_vgid failed to move PVs for %s old_vgid %s", arg_name, old_vgid);
abort_daemon = 1;
goto ret;
@ -1104,7 +1104,7 @@ static int _update_metadata_new_vgid(lvmetad_state *s,
/*
* Reassign PVs based on the new metadata.
*/
if (!update_pvid_to_vgid(s, new_meta, new_vgid, 1)) {
if (!_update_pvid_to_vgid(s, new_meta, new_vgid, 1)) {
ERROR(s, "update_metadata_new_name failed to update PVs for %s %s", arg_name, new_vgid);
abort_daemon = 1;
goto out;
@ -1164,7 +1164,7 @@ static int _update_metadata_new_name(lvmetad_state *s,
/*
* Temporarily orphan the PVs in the old metadata.
*/
if (!update_pvid_to_vgid(s, old_meta, "#orphan", 0)) {
if (!_update_pvid_to_vgid(s, old_meta, "#orphan", 0)) {
ERROR(s, "update_metadata_new_name failed to move PVs for old_name %s %s", old_name, arg_vgid);
abort_daemon = 1;
goto ret;
@ -1218,7 +1218,7 @@ static int _update_metadata_new_name(lvmetad_state *s,
/*
* Reassign PVs based on the new metadata.
*/
if (!update_pvid_to_vgid(s, new_meta, arg_vgid, 1)) {
if (!_update_pvid_to_vgid(s, new_meta, arg_vgid, 1)) {
ERROR(s, "update_metadata_new_name failed to update PVs for %s %s", new_name, arg_vgid);
abort_daemon = 1;
goto out;
@ -1284,7 +1284,7 @@ static int _update_metadata_add_new(lvmetad_state *s, const char *new_name, cons
goto out;
}
if (!update_pvid_to_vgid(s, new_meta, new_vgid, 1)) {
if (!_update_pvid_to_vgid(s, new_meta, new_vgid, 1)) {
ERROR(s, "update_metadata_add_new failed to update PVs for %s %s", new_name, new_vgid);
abort_daemon = 1;
goto out;
@ -1646,7 +1646,7 @@ static int _update_metadata(lvmetad_state *s, const char *arg_name, const char *
DEBUGLOG_cft(s, "OLD: ", old_meta->root);
DEBUGLOG_cft(s, "NEW: ", new_metadata);
lock_pvid_to_vgid(s);
update_pvid_to_vgid(s, old_meta, arg_vgid, MARK_OUTDATED);
_update_pvid_to_vgid(s, old_meta, arg_vgid, MARK_OUTDATED);
unlock_pvid_to_vgid(s);
}
@ -1771,9 +1771,9 @@ static int _update_metadata(lvmetad_state *s, const char *arg_name, const char *
* The PVs in the VG may have changed in the new metadata, so
* temporarily orphan all of the PVs in the existing VG.
* The PVs that are still in the VG will be reassigned to this
* VG below by the next call to update_pvid_to_vgid().
* VG below by the next call to _update_pvid_to_vgid().
*/
if (!update_pvid_to_vgid(s, old_meta, "#orphan", 0)) {
if (!_update_pvid_to_vgid(s, old_meta, "#orphan", 0)) {
ERROR(s, "update_metadata failed to move PVs for %s %s", arg_name, arg_vgid);
unlock_vgid_to_metadata(s);
unlock_pvid_to_vgid(s);
@ -1811,7 +1811,7 @@ static int _update_metadata(lvmetad_state *s, const char *arg_name, const char *
* be newly mapped to this vgid, and previous PVs that
* remain in the VG will be remapped to the VG again.
*/
if (!update_pvid_to_vgid(s, new_meta, arg_vgid, 1)) {
if (!_update_pvid_to_vgid(s, new_meta, arg_vgid, 1)) {
ERROR(s, "update_metadata failed to update PVs for %s %s", arg_name, arg_vgid);
abort_daemon = 1;
retval = 0;