* [PATCH] dlm: trivial annotation of be16 value
@ 2008-11-07 19:41 Harvey Harrison
2008-11-12 22:34 ` David Teigland
0 siblings, 1 reply; 2+ messages in thread
From: Harvey Harrison @ 2008-11-07 19:41 UTC (permalink / raw)
To: David Teigland, Patrick Caulfield; +Cc: LKML, Andrew Morton
fs/dlm/dir.c:419:14: warning: incorrect type in assignment (different base types)
fs/dlm/dir.c:419:14: expected unsigned short [unsigned] [addressable] [assigned] [usertype] be_namelen
fs/dlm/dir.c:419:14: got restricted __be16 [usertype] <noident>
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
---
fs/dlm/dir.c | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/fs/dlm/dir.c b/fs/dlm/dir.c
index 85defeb..92969f8 100644
--- a/fs/dlm/dir.c
+++ b/fs/dlm/dir.c
@@ -374,7 +374,7 @@ void dlm_copy_master_names(struct dlm_ls *ls, char *inbuf, int inlen,
struct list_head *list;
struct dlm_rsb *r;
int offset = 0, dir_nodeid;
- uint16_t be_namelen;
+ __be16 be_namelen;
down_read(&ls->ls_root_sem);
@@ -410,15 +410,15 @@ void dlm_copy_master_names(struct dlm_ls *ls, char *inbuf, int inlen,
if (offset + sizeof(uint16_t)*2 + r->res_length > outlen) {
/* Write end-of-block record */
- be_namelen = 0;
- memcpy(outbuf + offset, &be_namelen, sizeof(uint16_t));
- offset += sizeof(uint16_t);
+ be_namelen = cpu_to_be16(0);
+ memcpy(outbuf + offset, &be_namelen, sizeof(__be16));
+ offset += sizeof(__be16);
goto out;
}
be_namelen = cpu_to_be16(r->res_length);
- memcpy(outbuf + offset, &be_namelen, sizeof(uint16_t));
- offset += sizeof(uint16_t);
+ memcpy(outbuf + offset, &be_namelen, sizeof(__be16));
+ offset += sizeof(__be16);
memcpy(outbuf + offset, r->res_name, r->res_length);
offset += r->res_length;
}
@@ -430,9 +430,9 @@ void dlm_copy_master_names(struct dlm_ls *ls, char *inbuf, int inlen,
if ((list == &ls->ls_root_list) &&
(offset + sizeof(uint16_t) <= outlen)) {
- be_namelen = 0xFFFF;
- memcpy(outbuf + offset, &be_namelen, sizeof(uint16_t));
- offset += sizeof(uint16_t);
+ be_namelen = cpu_to_be16(0xFFFF);
+ memcpy(outbuf + offset, &be_namelen, sizeof(__be16));
+ offset += sizeof(__be16);
}
out:
--
1.6.0.3.756.gb776d
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] dlm: trivial annotation of be16 value
2008-11-07 19:41 [PATCH] dlm: trivial annotation of be16 value Harvey Harrison
@ 2008-11-12 22:34 ` David Teigland
0 siblings, 0 replies; 2+ messages in thread
From: David Teigland @ 2008-11-12 22:34 UTC (permalink / raw)
To: Harvey Harrison; +Cc: Patrick Caulfield, LKML, Andrew Morton
On Fri, Nov 07, 2008 at 11:41:38AM -0800, Harvey Harrison wrote:
> fs/dlm/dir.c:419:14: warning: incorrect type in assignment (different base types)
> fs/dlm/dir.c:419:14: expected unsigned short [unsigned] [addressable] [assigned] [usertype] be_namelen
> fs/dlm/dir.c:419:14: got restricted __be16 [usertype] <noident>
>
> Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
> ---
> fs/dlm/dir.c | 18 +++++++++---------
> 1 files changed, 9 insertions(+), 9 deletions(-)
Thanks, adding this to next branch.
Dave
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-11-12 22:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-07 19:41 [PATCH] dlm: trivial annotation of be16 value Harvey Harrison
2008-11-12 22:34 ` David Teigland
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.