From: Alexander Aring <aahringo@redhat.com>
To: teigland@redhat.com
Cc: gfs2@lists.linux.dev, aahringo@redhat.com
Subject: [PATCH v6.12-rc1 6/7] dlm: dlm_config_info config fields to unsigned int
Date: Fri, 4 Oct 2024 11:13:42 -0400 [thread overview]
Message-ID: <20241004151343.3952937-7-aahringo@redhat.com> (raw)
In-Reply-To: <20241004151343.3952937-1-aahringo@redhat.com>
We are using kstrtouint() to parse common integer fields. This patch
will switch to use unsigned int instead of int as we are parsing
unsigned integer values.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
---
fs/dlm/config.c | 3 ++-
fs/dlm/config.h | 22 +++++++++++-----------
2 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/fs/dlm/config.c b/fs/dlm/config.c
index ff18c7ace611..b2f21aa00719 100644
--- a/fs/dlm/config.c
+++ b/fs/dlm/config.c
@@ -153,7 +153,8 @@ static ssize_t cluster_tcp_port_store(struct config_item *item,
CONFIGFS_ATTR(cluster_, tcp_port);
-static ssize_t cluster_set(int *info_field, int (*check_cb)(unsigned int x),
+static ssize_t cluster_set(unsigned int *info_field,
+ int (*check_cb)(unsigned int x),
const char *buf, size_t len)
{
unsigned int x;
diff --git a/fs/dlm/config.h b/fs/dlm/config.h
index 2c5dcf5eaef1..e48c4f9686d3 100644
--- a/fs/dlm/config.h
+++ b/fs/dlm/config.h
@@ -30,17 +30,17 @@ extern const struct rhashtable_params dlm_rhash_rsb_params;
struct dlm_config_info {
__be16 ci_tcp_port;
- int ci_buffer_size;
- int ci_rsbtbl_size;
- int ci_recover_timer;
- int ci_toss_secs;
- int ci_scan_secs;
- int ci_log_debug;
- int ci_log_info;
- int ci_protocol;
- int ci_mark;
- int ci_new_rsb_count;
- int ci_recover_callbacks;
+ unsigned int ci_buffer_size;
+ unsigned int ci_rsbtbl_size;
+ unsigned int ci_recover_timer;
+ unsigned int ci_toss_secs;
+ unsigned int ci_scan_secs;
+ unsigned int ci_log_debug;
+ unsigned int ci_log_info;
+ unsigned int ci_protocol;
+ unsigned int ci_mark;
+ unsigned int ci_new_rsb_count;
+ unsigned int ci_recover_callbacks;
char ci_cluster_name[DLM_LOCKSPACE_LEN];
};
--
2.43.0
next prev parent reply other threads:[~2024-10-04 15:13 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-04 15:13 [PATCH v6.12-rc1 0/7] dlm: tracing, config and null-ptr fixes Alexander Aring
2024-10-04 15:13 ` [PATCH v6.12-rc1 1/7] dlm: fix swapped args sb_flags vs sb_status Alexander Aring
2024-10-04 15:13 ` [PATCH v6.12-rc1 2/7] dlm: fix possible lkb_resource null dereference Alexander Aring
2024-10-04 15:13 ` [PATCH v6.12-rc1 3/7] dlm: disallow different configs nodeid storages Alexander Aring
2024-10-04 15:13 ` [PATCH v6.12-rc1 4/7] dlm: handle port as __be16 network byte order Alexander Aring
2024-10-04 15:13 ` [PATCH v6.12-rc1 5/7] dlm: use dlm_config as only cluster configuration Alexander Aring
2024-10-04 15:13 ` Alexander Aring [this message]
2024-10-04 15:13 ` [PATCH v6.12-rc1 7/7] dlm: make add_to_waiters() that it can't fail Alexander Aring
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241004151343.3952937-7-aahringo@redhat.com \
--to=aahringo@redhat.com \
--cc=gfs2@lists.linux.dev \
--cc=teigland@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox