[prev in list] [next in list] [prev in thread] [next in thread] 

List:       sanlock-devel
Subject:    [sanlock] 05/08: python: Replace memset() with initializer
From:       pagure () pagure ! io
Date:       2019-06-25 15:53:37
Message-ID: 20190625155332.6DF2B2547053 () pagure01 ! fedoraproject ! org
[Download RAW message or body]

This is an automated email from the git hooks/post-receive script.

nsoffer pushed a commit to branch master
in repository sanlock.

commit 44763e5669a1a758ec2f8e4cbc80969429d17a1c
Author: Nir Soffer <nsoffer@redhat.com>
AuthorDate: Sun Jun 16 21:16:13 2019 +0300

    python: Replace memset() with initializer
    
    C99 ensures that all fields of a struct are initialized to zero when
    initializing to {0} and all characters are initialized to zero when
    initializing to "";
    
    Signed-off-by: Nir Soffer <nsoffer@redhat.com>
---
 python/sanlock.c | 36 ++++++++----------------------------
 1 file changed, 8 insertions(+), 28 deletions(-)

diff --git a/python/sanlock.c b/python/sanlock.c
index 6824e01..ca3713d 100644
--- a/python/sanlock.c
+++ b/python/sanlock.c
@@ -343,14 +343,13 @@ py_get_alignment(PyObject *self __unused, PyObject *args)
 {
     int rv = -1;
     PyObject *path = NULL;
-    struct sanlk_disk disk;
+    struct sanlk_disk disk = {0};
 
     /* parse python tuple */
     if (!PyArg_ParseTuple(args, "O&", pypath_converter, &path)) {
         goto finally;
     }
 
-    memset(&disk, 0, sizeof(struct sanlk_disk));
     strncpy(disk.path, PyBytes_AsString(path), SANLK_PATH_LEN - 1);
 
     /* get device alignment (gil disabled) */
@@ -420,14 +419,11 @@ py_init_lockspace(PyObject *self __unused, PyObject *args, PyObject *keywds)
     int rv = -1, max_hosts = 0, num_hosts = 0, use_aio = 1;
     PyObject *lockspace = NULL;
     PyObject *path = NULL;
-    struct sanlk_lockspace ls;
+    struct sanlk_lockspace ls = {0};
 
     static char *kwlist[] = {"lockspace", "path", "offset",
                                 "max_hosts", "num_hosts", "use_aio", NULL};
 
-    /* initialize lockspace structure */
-    memset(&ls, 0, sizeof(struct sanlk_lockspace));
-
     /* parse python tuple */
     if (!PyArg_ParseTupleAndKeywords(args, keywds, "O&O&|kiii", kwlist,
         convert_to_pybytes, &lockspace, pypath_converter, &path, &ls.host_id_disk.offset,
@@ -527,14 +523,11 @@ py_write_lockspace(PyObject *self __unused, PyObject *args, PyObject *keywds)
     uint32_t io_timeout = 0;
     PyObject *lockspace = NULL;
     PyObject *path = NULL;
-    struct sanlk_lockspace ls;
+    struct sanlk_lockspace ls = {0};
 
     static char *kwlist[] = {"lockspace", "path", "offset", "max_hosts",
                                 "iotimeout", "align", "sector", NULL};
 
-    /* initialize lockspace structure */
-    memset(&ls, 0, sizeof(struct sanlk_lockspace));
-
     /* parse python tuple */
     if (!PyArg_ParseTupleAndKeywords(args, keywds, "O&O&|kiIli", kwlist,
         convert_to_pybytes, &lockspace, pypath_converter, &path, &ls.host_id_disk.offset,
@@ -585,14 +578,11 @@ py_read_lockspace(PyObject *self __unused, PyObject *args, PyObject *keywds)
     long align = ALIGNMENT_1M;
     uint32_t io_timeout = 0;
     PyObject *path = NULL;
-    struct sanlk_lockspace ls;
+    struct sanlk_lockspace ls = {0};
     PyObject *ls_info = NULL;
 
     static char *kwlist[] = {"path", "offset", "align", "sector", NULL};
 
-    /* initialize lockspace structure */
-    memset(&ls, 0, sizeof(struct sanlk_lockspace));
-
     /* parse python tuple */
     if (!PyArg_ParseTupleAndKeywords(args, keywds, "O&|kli", kwlist,
         pypath_converter, &path, &ls.host_id_disk.offset, &align, &sector)) {
@@ -795,14 +785,11 @@ py_add_lockspace(PyObject *self __unused, PyObject *args, PyObject *keywds)
     uint32_t iotimeout = 0;
     PyObject *lockspace = NULL;
     PyObject *path = NULL;
-    struct sanlk_lockspace ls;
+    struct sanlk_lockspace ls = {0};
 
     static char *kwlist[] = {"lockspace", "host_id", "path", "offset",
                                 "iotimeout", "wait", NULL};
 
-    /* initialize lockspace structure */
-    memset(&ls, 0, sizeof(struct sanlk_lockspace));
-
     /* parse python tuple */
     if (!PyArg_ParseTupleAndKeywords(args, keywds, "O&kO&|kIi", kwlist,
         convert_to_pybytes, &lockspace, &ls.host_id, pypath_converter, &path,
@@ -852,14 +839,11 @@ py_inq_lockspace(PyObject *self __unused, PyObject *args, PyObject *keywds)
     int rv = BIND_ERROR, waitrs = 0, flags = 0;
     PyObject *lockspace = NULL;
     PyObject *path = NULL;
-    struct sanlk_lockspace ls;
+    struct sanlk_lockspace ls = {0};
 
     static char *kwlist[] = {"lockspace", "host_id", "path", "offset",
                                 "wait", NULL};
 
-    /* initialize lockspace structure */
-    memset(&ls, 0, sizeof(struct sanlk_lockspace));
-
     /* parse python tuple */
     if (!PyArg_ParseTupleAndKeywords(args, keywds, "O&kO&|ki", kwlist,
         convert_to_pybytes, &lockspace, &ls.host_id, pypath_converter, &path,
@@ -916,14 +900,11 @@ py_rem_lockspace(PyObject *self __unused, PyObject *args, PyObject *keywds)
     int wait = 1;
     PyObject *lockspace = NULL;
     PyObject *path = NULL;
-    struct sanlk_lockspace ls;
+    struct sanlk_lockspace ls = {0};
 
     static char *kwlist[] = {"lockspace", "host_id", "path", "offset",
                                 "wait", "unused", NULL};
 
-    /* initialize lockspace structure */
-    memset(&ls, 0, sizeof(struct sanlk_lockspace));
-
     /* parse python tuple */
     if (!PyArg_ParseTupleAndKeywords(args, keywds, "O&kO&|kii", kwlist,
         convert_to_pybytes, &lockspace, &ls.host_id, pypath_converter, &path,
@@ -1407,7 +1388,7 @@ py_killpath(PyObject *self __unused, PyObject *args, PyObject *keywds)
 {
     int rv = -1, num_args, sanlockfd = -1;
     size_t kplen = 0;
-    char kpargs[SANLK_HELPER_ARGS_LEN];
+    char kpargs[SANLK_HELPER_ARGS_LEN] = "";
     PyObject *path = NULL;
     PyObject *argslist;
 
@@ -1426,7 +1407,6 @@ py_killpath(PyObject *self __unused, PyObject *args, PyObject *keywds)
     }
 
     num_args = PyList_Size(argslist);
-    memset(kpargs, 0, SANLK_HELPER_ARGS_LEN);
 
     /* creating the arguments string from a python list */
     for (int i = 0; i < num_args; i++) {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
sanlock-devel mailing list -- sanlock-devel@lists.fedorahosted.org
To unsubscribe send an email to sanlock-devel-leave@lists.fedorahosted.org
Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedorahosted.org/archives/list/sanlock-devel@lists.fedorahosted.org

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic