From: "Paweł Sikora" <pluto@pld-linux.org>
To: linux-kernel@vger.kernel.org
Subject: [PATCH] fs/xfs/xfs_bmap - gcc34 warning killed.
Date: Sun, 29 Aug 2004 17:25:34 +0200 [thread overview]
Message-ID: <200408291725.34780.pluto@pld-linux.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 466 bytes --]
CC [M] fs/xfs/xfs_bmap.o
fs/xfs/xfs_bmap.c: In function `xfs_bmap_do_search_extents':
fs/xfs/xfs_bmap.c:3434: warning: integer constant is too large for "long" type
fs/xfs/xfs_bmap.c:3435: warning: integer constant is too large for "long" type
fs/xfs/xfs_bmap.c:3439: warning: integer constant is too large for "long" type
--
/* Copyright (C) 2003, SCO, Inc. This is valuable Intellectual Property. */
#define say(x) lie(x)
[-- Attachment #2: xfs_bmap.patch --]
[-- Type: text/x-diff, Size: 640 bytes --]
--- linux-2.6.9-rc1/fs/xfs/xfs_bmap.c.orig 2004-08-24 09:03:32.000000000 +0200
+++ linux-2.6.9-rc1/fs/xfs/xfs_bmap.c 2004-08-29 17:17:07.737547088 +0200
@@ -3431,12 +3431,12 @@
* uninitialized br_startblock field.
*/
- got.br_startoff = 0xffa5a5a5a5a5a5a5;
- got.br_blockcount = 0xa55a5a5a5a5a5a5a;
+ got.br_startoff = 0xffa5a5a5a5a5a5a5ULL;
+ got.br_blockcount = 0xa55a5a5a5a5a5a5aULL;
got.br_state = XFS_EXT_INVALID;
#if XFS_BIG_BLKNOS
- got.br_startblock = 0xffffa5a5a5a5a5a5;
+ got.br_startblock = 0xffffa5a5a5a5a5a5ULL;
#else
got.br_startblock = 0xffffa5a5;
#endif
reply other threads:[~2004-08-29 15:25 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=200408291725.34780.pluto@pld-linux.org \
--to=pluto@pld-linux.org \
--cc=linux-kernel@vger.kernel.org \
/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 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.