From: Christian Brauner Date: Sun, 23 Sep 2018 15:55:27 +0000 (+0200) Subject: cgfsng: s/cgfsng_destroy/cgfsng_payload_destroy/g X-Git-Tag: lxc-3.1.0~81^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3999f50bd2a86ad897fe267b99a676cc7a4a7fe8;p=thirdparty%2Flxc.git cgfsng: s/cgfsng_destroy/cgfsng_payload_destroy/g Signed-off-by: Christian Brauner --- diff --git a/src/lxc/cgroups/cgfsng.c b/src/lxc/cgroups/cgfsng.c index 5475f7eff..9a0dba55c 100644 --- a/src/lxc/cgroups/cgfsng.c +++ b/src/lxc/cgroups/cgfsng.c @@ -1111,7 +1111,8 @@ static int cgroup_rmdir_wrapper(void *data) return cgroup_rmdir(arg->hierarchies, arg->container_cgroup); } -__cgfsng_ops static void cgfsng_destroy(struct cgroup_ops *ops, struct lxc_handler *handler) +__cgfsng_ops__ static void cgfsng_payload_destroy(struct cgroup_ops *ops, + struct lxc_handler *handler) { int ret; struct generic_userns_exec_data wrap; @@ -2681,7 +2682,7 @@ struct cgroup_ops *cgfsng_ops_init(struct lxc_conf *conf) } cgfsng_ops->data_init = cgfsng_data_init; - cgfsng_ops->destroy = cgfsng_destroy; + cgfsng_ops->destroy = cgfsng_payload_destroy; cgfsng_ops->monitor_create = cgfsng_monitor_create; cgfsng_ops->monitor_enter = cgfsng_monitor_enter; cgfsng_ops->payload_create = cgfsng_payload_create;