summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-01-10 14:56:05 +0100
committerThomas Haller <thaller@redhat.com>2016-01-10 15:52:47 +0100
commiteb290224a87396116226228db4659b277fb9f40f (patch)
tree12c265f741108bc5ddae6e8f1f801eb47ca56d68
parent95f680be3a1ff9d58b6a337c3f70933a2846551a (diff)
downloadNetworkManager-eb290224a87396116226228db4659b277fb9f40f.tar.gz
device/trivial: rename realize/setup function in NMDevice
-rw-r--r--src/devices/nm-device.c20
-rw-r--r--src/devices/nm-device.h6
-rw-r--r--src/nm-manager.c12
3 files changed, 19 insertions, 19 deletions
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index 58fccafbad..c0e0074cef 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -1700,23 +1700,23 @@ link_type_compatible (NMDevice *self,
}
/**
- * nm_device_realize():
+ * nm_device_realize_start():
* @self: the #NMDevice
* @plink: an existing platform link or %NULL
* @out_compatible: %TRUE on return if @self is compatible with @plink
* @error: location to store error, or %NULL
*
* Initializes and sets up the device using existing backing resources. Before
- * the device is ready for use nm_device_setup_finish() must be called.
+ * the device is ready for use nm_device_realize_finish() must be called.
* @out_compatible will only be set if @plink is not %NULL, and
*
* Returns: %TRUE on success, %FALSE on error
*/
gboolean
-nm_device_realize (NMDevice *self,
- NMPlatformLink *plink,
- gboolean *out_compatible,
- GError **error)
+nm_device_realize_start (NMDevice *self,
+ NMPlatformLink *plink,
+ gboolean *out_compatible,
+ GError **error)
{
NM_SET_OUT (out_compatible, TRUE);
@@ -1771,7 +1771,7 @@ nm_device_create_and_realize (NMDevice *self,
}
realize_start_setup (self, plink);
- nm_device_setup_finish (self, plink);
+ nm_device_realize_finish (self, plink);
g_return_val_if_fail (nm_device_check_connection_compatible (self, connection), TRUE);
return TRUE;
@@ -1869,7 +1869,7 @@ realize_start_setup (NMDevice *self, const NMPlatformLink *plink)
klass = NM_DEVICE_GET_CLASS (self);
- /* Balanced by a thaw in nm_device_setup_finish() */
+ /* Balanced by a thaw in nm_device_realize_finish() */
g_object_freeze_notify (G_OBJECT (self));
if (plink) {
@@ -1949,7 +1949,7 @@ realize_start_setup (NMDevice *self, const NMPlatformLink *plink)
}
/**
- * nm_device_setup_finish():
+ * nm_device_realize_finish():
* @self: the #NMDevice
* @plink: the #NMPlatformLink if backed by a kernel netdevice
*
@@ -1958,7 +1958,7 @@ realize_start_setup (NMDevice *self, const NMPlatformLink *plink)
* is ready for network connectivity.
*/
void
-nm_device_setup_finish (NMDevice *self, const NMPlatformLink *plink)
+nm_device_realize_finish (NMDevice *self, const NMPlatformLink *plink)
{
g_return_if_fail (!plink || link_type_compatible (self, plink->type, NULL, NULL));
diff --git a/src/devices/nm-device.h b/src/devices/nm-device.h
index 6b004a48ca..997dd2d456 100644
--- a/src/devices/nm-device.h
+++ b/src/devices/nm-device.h
@@ -467,16 +467,16 @@ gboolean nm_device_get_is_nm_owned (NMDevice *device);
gboolean nm_device_has_capability (NMDevice *self, NMDeviceCapabilities caps);
-gboolean nm_device_realize (NMDevice *device,
+gboolean nm_device_realize_start (NMDevice *device,
NMPlatformLink *plink,
gboolean *out_compatible,
GError **error);
+void nm_device_realize_finish (NMDevice *self,
+ const NMPlatformLink *plink);
gboolean nm_device_create_and_realize (NMDevice *self,
NMConnection *connection,
NMDevice *parent,
GError **error);
-void nm_device_setup_finish (NMDevice *self,
- const NMPlatformLink *plink);
gboolean nm_device_unrealize (NMDevice *device,
gboolean remove_resources,
GError **error);
diff --git a/src/nm-manager.c b/src/nm-manager.c
index 85832223a1..ac3c5001af 100644
--- a/src/nm-manager.c
+++ b/src/nm-manager.c
@@ -1895,9 +1895,9 @@ factory_device_added_cb (NMDeviceFactory *factory,
{
GError *error = NULL;
- if (nm_device_realize (device, NULL, NULL, &error)) {
+ if (nm_device_realize_start (device, NULL, NULL, &error)) {
add_device (NM_MANAGER (user_data), device, NULL);
- nm_device_setup_finish (device, NULL);
+ nm_device_realize_finish (device, NULL);
} else {
nm_log_warn (LOGD_DEVICE, "(%s): failed to realize device: %s",
nm_device_get_iface (device), error->message);
@@ -1967,9 +1967,9 @@ platform_link_added (NMManager *self,
* device with the link's name.
*/
return;
- } else if (nm_device_realize (candidate, plink, &compatible, &error)) {
+ } else if (nm_device_realize_start (candidate, plink, &compatible, &error)) {
/* Success */
- nm_device_setup_finish (candidate, plink);
+ nm_device_realize_finish (candidate, plink);
return;
}
@@ -2016,9 +2016,9 @@ platform_link_added (NMManager *self,
if (device) {
if (nm_plugin_missing)
nm_device_set_nm_plugin_missing (device, TRUE);
- if (nm_device_realize (device, plink, NULL, &error)) {
+ if (nm_device_realize_start (device, plink, NULL, &error)) {
add_device (self, device, NULL);
- nm_device_setup_finish (device, plink);
+ nm_device_realize_finish (device, plink);
} else {
nm_log_warn (LOGD_DEVICE, "%s: failed to realize device: %s",
plink->name, error->message);