[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1208542368-13417-2-git-send-email-teigland@redhat.com>
Date: Fri, 18 Apr 2008 13:12:43 -0500
From: David Teigland <teigland@...hat.com>
To: linux-kernel@...r.kernel.org
Cc: Harvey Harrison <harvey.harrison@...il.com>
Subject: [PATCH 1/6] dlm: match signedness between dlm_config_info and cluster_set
From: Harvey Harrison <harvey.harrison@...il.com>
cluster_set is only called from the macro CLUSTER_ATTR which defines read/write
access functions. Make the signedness match to avoid sparse warnings every time
CLUSTER_ATTR is used (lines 149-159) all of the form:
fs/dlm/config.c:149:1: warning: incorrect type in argument 3 (different signedness)
fs/dlm/config.c:149:1: expected unsigned int *info_field
fs/dlm/config.c:149:1: got int extern [toplevel] *<noident>
Signed-off-by: Harvey Harrison <harvey.harrison@...il.com>
Signed-off-by: David Teigland <teigland@...hat.com>
---
fs/dlm/config.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/dlm/config.c b/fs/dlm/config.c
index c3ad1df..7ceaea3 100644
--- a/fs/dlm/config.c
+++ b/fs/dlm/config.c
@@ -114,7 +114,7 @@ struct cluster_attribute {
};
static ssize_t cluster_set(struct cluster *cl, unsigned int *cl_field,
- unsigned int *info_field, int check_zero,
+ int *info_field, int check_zero,
const char *buf, size_t len)
{
unsigned int x;
--
1.5.3.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists