diff options
author | Damjan Marion <damarion@cisco.com> | 2024-03-12 17:42:49 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-03-12 19:29:56 +0000 |
commit | c3148b1be8f519c80c4417c21b978dfef72b351b (patch) | |
tree | 2511eb86e5c429ab018716fed0366164e6faf679 /src/svm | |
parent | e2ed59933153d665ee43add2de03a581627b73fa (diff) |
misc: remove GNU Indent directives
Type: refactor
Change-Id: I5235bf3e9aff58af6ba2c14e8c6529c4fc9ec86c
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/svm')
-rw-r--r-- | src/svm/svm.c | 2 | ||||
-rw-r--r-- | src/svm/svmdb.c | 6 | ||||
-rw-r--r-- | src/svm/svmtool.c | 4 |
3 files changed, 0 insertions, 12 deletions
diff --git a/src/svm/svm.c b/src/svm/svm.c index 5580808909a..d32c0a5d4db 100644 --- a/src/svm/svm.c +++ b/src/svm/svm.c @@ -1300,12 +1300,10 @@ svm_client_scan (const char *root_path) * Snapshoot names, can't hold root rp mutex across * find_or_create. */ - /* *INDENT-OFF* */ pool_foreach (subp, mp->subregions) { name = vec_dup (subp->subregion_name); vec_add1(svm_names, name); } - /* *INDENT-ON* */ pthread_mutex_unlock (&root_rp->mutex); diff --git a/src/svm/svmdb.c b/src/svm/svmdb.c index 531ea1fbb0d..3c69dbf45ba 100644 --- a/src/svm/svmdb.c +++ b/src/svm/svmdb.c @@ -414,7 +414,6 @@ svmdb_local_dump_strings (svmdb_client_t * client) h = client->shm->namespaces[SVMDB_NAMESPACE_STRING]; - /* *INDENT-OFF* */ hash_foreach_mem(key, value, h, ({ svmdb_value_t *v = pool_elt_at_index (shm->values, value); @@ -422,7 +421,6 @@ svmdb_local_dump_strings (svmdb_client_t * client) fformat(stdout, "%s: %s\n", key, vec_len(v->value) ? v->value : (u8 *)"(nil)"); })); - /* *INDENT-ON* */ region_unlock (client->db_rp); } @@ -463,7 +461,6 @@ svmdb_local_serialize_strings (svmdb_client_t * client, char *filename) serialize_likely_small_unsigned_integer (sm, hash_elts (h)); - /* *INDENT-OFF* */ hash_foreach_mem(key, value, h, ({ svmdb_value_t *v = pool_elt_at_index (shm->values, value); @@ -475,7 +472,6 @@ svmdb_local_serialize_strings (svmdb_client_t * client, char *filename) serialize_cstring (sm, (char *)v->value); } })); - /* *INDENT-ON* */ region_unlock (client->db_rp); serialize_close (sm); @@ -610,7 +606,6 @@ svmdb_local_dump_vecs (svmdb_client_t * client) h = client->shm->namespaces[SVMDB_NAMESPACE_VEC]; - /* *INDENT-OFF* */ hash_foreach_mem(key, value, h, ({ svmdb_value_t *v = pool_elt_at_index (shm->values, value); @@ -618,7 +613,6 @@ svmdb_local_dump_vecs (svmdb_client_t * client) format_hex_bytes, v->value, vec_len(v->value)*v->elsize, ((f64 *)(v->value))[0]); })); - /* *INDENT-ON* */ region_unlock (client->db_rp); } diff --git a/src/svm/svmtool.c b/src/svm/svmtool.c index 60859674298..521ddab7eb3 100644 --- a/src/svm/svmtool.c +++ b/src/svm/svmtool.c @@ -72,12 +72,10 @@ format_all_svm_regions (u8 * s, va_list * args) * Snapshoot names, can't hold root rp mutex across * find_or_create. */ - /* *INDENT-OFF* */ pool_foreach (subp, mp->subregions) { name = vec_dup (subp->subregion_name); vec_add1(svm_names, name); } - /* *INDENT-ON* */ pthread_mutex_unlock (&root_rp->mutex); @@ -328,12 +326,10 @@ subregion_repair (char *chroot_path) * Snapshoot names, can't hold root rp mutex across * find_or_create. */ - /* *INDENT-OFF* */ pool_foreach (subp, mp->subregions) { name = vec_dup (subp->subregion_name); vec_add1(svm_names, name); } - /* *INDENT-ON* */ pthread_mutex_unlock (&root_rp->mutex); |