LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH]: warrning fix: unsigned->signed
@ 2007-02-06 21:39 Tomasz Kvarsin
2007-02-06 22:09 ` Andrew Morton
0 siblings, 1 reply; 5+ messages in thread
From: Tomasz Kvarsin @ 2007-02-06 21:39 UTC (permalink / raw)
To: Andrew Morton; +Cc: viro, axboe, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 246 bytes --]
While compiling my code, I always get bunch of warrning from headers,
here is fix for them:
__getblk is alawys called with unsigned argument,
but it takes signed, the same story with __bread,__breadahead and so on.
Signed-off-by: Tomasz Kvarsin
[-- Attachment #2: unsigned-fix.patch --]
[-- Type: application/octet-stream, Size: 3181 bytes --]
Index: linux-2.6.20/include/linux/buffer_head.h
===================================================================
--- linux-2.6.20.orig/include/linux/buffer_head.h
+++ linux-2.6.20/include/linux/buffer_head.h
@@ -172,12 +172,12 @@ struct super_block *freeze_bdev(struct b
void thaw_bdev(struct block_device *, struct super_block *);
int fsync_super(struct super_block *);
int fsync_no_super(struct block_device *);
-struct buffer_head *__find_get_block(struct block_device *, sector_t, int);
-struct buffer_head * __getblk(struct block_device *, sector_t, int);
+struct buffer_head *__find_get_block(struct block_device *, sector_t, unsigned int);
+struct buffer_head * __getblk(struct block_device *, sector_t, unsigned int);
void __brelse(struct buffer_head *);
void __bforget(struct buffer_head *);
-void __breadahead(struct block_device *, sector_t block, int size);
-struct buffer_head *__bread(struct block_device *, sector_t block, int size);
+void __breadahead(struct block_device *, sector_t block, unsigned int size);
+struct buffer_head *__bread(struct block_device *, sector_t block, unsigned int size);
struct buffer_head *alloc_buffer_head(gfp_t gfp_flags);
void free_buffer_head(struct buffer_head * bh);
void FASTCALL(unlock_buffer(struct buffer_head *bh));
Index: linux-2.6.20/fs/buffer.c
===================================================================
--- linux-2.6.20.orig/fs/buffer.c
+++ linux-2.6.20/fs/buffer.c
@@ -1282,11 +1282,11 @@ static void bh_lru_install(struct buffer
* Look up the bh in this cpu's LRU. If it's there, move it to the head.
*/
static struct buffer_head *
-lookup_bh_lru(struct block_device *bdev, sector_t block, int size)
+lookup_bh_lru(struct block_device *bdev, sector_t block, unsigned int size)
{
struct buffer_head *ret = NULL;
struct bh_lru *lru;
- int i;
+ unsigned int i;
check_irqs_on();
bh_lru_lock();
@@ -1318,7 +1318,7 @@ lookup_bh_lru(struct block_device *bdev,
* NULL
*/
struct buffer_head *
-__find_get_block(struct block_device *bdev, sector_t block, int size)
+__find_get_block(struct block_device *bdev, sector_t block, unsigned int size)
{
struct buffer_head *bh = lookup_bh_lru(bdev, block, size);
@@ -1346,7 +1346,7 @@ EXPORT_SYMBOL(__find_get_block);
* attempt is failing. FIXME, perhaps?
*/
struct buffer_head *
-__getblk(struct block_device *bdev, sector_t block, int size)
+__getblk(struct block_device *bdev, sector_t block, unsigned int size)
{
struct buffer_head *bh = __find_get_block(bdev, block, size);
@@ -1360,7 +1360,7 @@ EXPORT_SYMBOL(__getblk);
/*
* Do async read-ahead on a buffer..
*/
-void __breadahead(struct block_device *bdev, sector_t block, int size)
+void __breadahead(struct block_device *bdev, sector_t block, unsigned int size)
{
struct buffer_head *bh = __getblk(bdev, block, size);
if (likely(bh)) {
@@ -1380,7 +1380,7 @@ EXPORT_SYMBOL(__breadahead);
* It returns NULL if the block was unreadable.
*/
struct buffer_head *
-__bread(struct block_device *bdev, sector_t block, int size)
+__bread(struct block_device *bdev, sector_t block, unsigned int size)
{
struct buffer_head *bh = __getblk(bdev, block, size);
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH]: warrning fix: unsigned->signed
2007-02-06 21:39 [PATCH]: warrning fix: unsigned->signed Tomasz Kvarsin
@ 2007-02-06 22:09 ` Andrew Morton
2007-02-06 22:55 ` Oleg Verych
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Andrew Morton @ 2007-02-06 22:09 UTC (permalink / raw)
To: Tomasz Kvarsin; +Cc: viro, axboe, linux-kernel
On Wed, 7 Feb 2007 00:39:45 +0300
"Tomasz Kvarsin" <kvarsin@gmail.com> wrote:
> While compiling my code, I always get bunch of warrning from headers,
> here is fix for them:
> __getblk is alawys called with unsigned argument,
> but it takes signed, the same story with __bread,__breadahead and so on.
The patch seems OK, but I'm curious to know why you're seeing this warning
and nobody else is. Are you using a compiler other than gcc? If gcc,
which version? Did you add any new compiler options?
Thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH]: warrning fix: unsigned->signed
2007-02-06 22:09 ` Andrew Morton
@ 2007-02-06 22:55 ` Oleg Verych
2007-02-07 5:31 ` Tomasz Kvarsin
2007-02-07 11:56 ` Jens Axboe
2 siblings, 0 replies; 5+ messages in thread
From: Oleg Verych @ 2007-02-06 22:55 UTC (permalink / raw)
To: linux-kernel
> From: Andrew Morton
> Newsgroups: gmane.linux.kernel
> Subject: Re: [PATCH]: warrning fix: unsigned->signed
> Date: Tue, 6 Feb 2007 14:09:36 -0800
Mail-Followup-To: LKML <linux-kernel@vger.kernel.org>, Oleg Verych <olecom@flower.upol.cz>, Andrew Morton <akpm@linux-foundation.org>, "Tomasz Kvarsin" <kvarsin@gmail.com>, viro@zeniv.linux.org.uk, axboe@kernel.dk
> On Wed, 7 Feb 2007 00:39:45 +0300
> "Tomasz Kvarsin" <kvarsin@gmail.com> wrote:
>
>> While compiling my code, I always get bunch of warrning from headers,
>> here is fix for them:
>> __getblk is alawys called with unsigned argument,
>> but it takes signed, the same story with __bread,__breadahead and so on.
>
> The patch seems OK, but I'm curious to know why you're seeing this warning
> and nobody else is. Are you using a compiler other than gcc? If gcc,
> which version? Did you add any new compiler options?
Andrew, i think it's due to
,-*- quote -*-
| Friends don't let friends use "-W". [0]
`-*-
I get many of them, when compiling external modules with `-Wall', of
course ;)
[0] Message-Id: Pine.LNX.4.64.0611281459331.4244@woody.osdl.org
Archived-At: <http://permalink.gmane.org/gmane.linux.kernel/470736>
____
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH]: warrning fix: unsigned->signed
2007-02-06 22:09 ` Andrew Morton
2007-02-06 22:55 ` Oleg Verych
@ 2007-02-07 5:31 ` Tomasz Kvarsin
2007-02-07 11:56 ` Jens Axboe
2 siblings, 0 replies; 5+ messages in thread
From: Tomasz Kvarsin @ 2007-02-07 5:31 UTC (permalink / raw)
To: Andrew Morton; +Cc: viro, axboe, linux-kernel
I uses gcc "trunk" with -Wconversion,
because of they finaly implement warrning for such things:
uint16_t a;
uint8_t b;
b = a;
see
http://gcc.gnu.org/wiki/NewWconversion
On 2/7/07, Andrew Morton <akpm@linux-foundation.org> wrote:
> On Wed, 7 Feb 2007 00:39:45 +0300
> "Tomasz Kvarsin" <kvarsin@gmail.com> wrote:
>
> > While compiling my code, I always get bunch of warrning from headers,
> > here is fix for them:
> > __getblk is alawys called with unsigned argument,
> > but it takes signed, the same story with __bread,__breadahead and so on.
>
> The patch seems OK, but I'm curious to know why you're seeing this warning
> and nobody else is. Are you using a compiler other than gcc? If gcc,
> which version? Did you add any new compiler options?
>
> Thanks.
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH]: warrning fix: unsigned->signed
2007-02-06 22:09 ` Andrew Morton
2007-02-06 22:55 ` Oleg Verych
2007-02-07 5:31 ` Tomasz Kvarsin
@ 2007-02-07 11:56 ` Jens Axboe
2 siblings, 0 replies; 5+ messages in thread
From: Jens Axboe @ 2007-02-07 11:56 UTC (permalink / raw)
To: Andrew Morton; +Cc: Tomasz Kvarsin, viro, linux-kernel
On Tue, Feb 06 2007, Andrew Morton wrote:
> On Wed, 7 Feb 2007 00:39:45 +0300
> "Tomasz Kvarsin" <kvarsin@gmail.com> wrote:
>
> > While compiling my code, I always get bunch of warrning from headers,
> > here is fix for them:
> > __getblk is alawys called with unsigned argument,
> > but it takes signed, the same story with __bread,__breadahead and so on.
>
> The patch seems OK, but I'm curious to know why you're seeing this warning
> and nobody else is. Are you using a compiler other than gcc? If gcc,
> which version? Did you add any new compiler options?
While I'm not a big fan of fixing signed vs unsigned -W generated
warnings (they tend to cause more harm than good), this patch looks ok
to me as well.
--
Jens Axboe
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-02-07 11:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-06 21:39 [PATCH]: warrning fix: unsigned->signed Tomasz Kvarsin
2007-02-06 22:09 ` Andrew Morton
2007-02-06 22:55 ` Oleg Verych
2007-02-07 5:31 ` Tomasz Kvarsin
2007-02-07 11:56 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).