]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: server: rename srv_cleanup_{idle,toremove}_connections()
authorWilly Tarreau <w@1wt.eu>
Thu, 25 Feb 2021 23:30:22 +0000 (00:30 +0100)
committerWilly Tarreau <w@1wt.eu>
Thu, 25 Feb 2021 23:30:22 +0000 (00:30 +0100)
These function names are unbearably long, they don't even fit into the
screen in "show profiling", let's trim the "_connections" to "_conns",
which happens to match the name of the lists there.

include/haproxy/server.h
src/cfgparse.c
src/server.c

index 33ec08b0fc921fd835e45166165dd6df1b56b0ec..2abba3502e6e03581b3c81e23fae65e69c417aea 100644 (file)
@@ -68,8 +68,8 @@ int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *c
 int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code);
 int snr_resolution_error_cb(struct resolv_requester *requester, int error_code);
 struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family);
-struct task *srv_cleanup_idle_connections(struct task *task, void *ctx, unsigned short state);
-struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state);
+struct task *srv_cleanup_idle_conns(struct task *task, void *ctx, unsigned short state);
+struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned short state);
 
 /*
  * Registers the server keyword list <kwl> as a list of valid keywords for next
index 317ef2a23eeefbfafb551002f26b9dd389f46237..247b3c40c5b30779d0e38cc81d8cef7debc141e5 100644 (file)
@@ -3270,14 +3270,14 @@ out_uri_auth_compat:
                                        if (!idle_conn_task)
                                                goto err;
 
-                                       idle_conn_task->process = srv_cleanup_idle_connections;
+                                       idle_conn_task->process = srv_cleanup_idle_conns;
                                        idle_conn_task->context = NULL;
 
                                        for (i = 0; i < global.nbthread; i++) {
                                                idle_conns[i].cleanup_task = task_new(1UL << i);
                                                if (!idle_conns[i].cleanup_task)
                                                        goto err;
-                                               idle_conns[i].cleanup_task->process = srv_cleanup_toremove_connections;
+                                               idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
                                                idle_conns[i].cleanup_task->context = NULL;
                                                HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
                                                MT_LIST_INIT(&idle_conns[i].toremove_conns);
index 0e7671ed5e8da0a04c1c1e9a978fabda20a78640..5bbad8292901be39ba2681f49bd3409fdfdcf23d 100644 (file)
@@ -4561,7 +4561,7 @@ static void srv_update_status(struct server *s)
        *s->adm_st_chg_cause = 0;
 }
 
-struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
+struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned short state)
 {
        struct connection *conn;
 
@@ -4629,7 +4629,7 @@ static void srv_cleanup_connections(struct server *srv)
        }
 }
 
-struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
+struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned short state)
 {
        struct server *srv;
        struct eb32_node *eb;