[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <E1K8dgi-0005sl-El@pomaz-ex.szeredi.hu>
Date: Tue, 17 Jun 2008 18:05:40 +0200
From: Miklos Szeredi <miklos@...redi.hu>
To: torvalds@...ux-foundation.org
CC: akpm@...ux-foundation.org, linux-kernel@...r.kernel.org,
linux-fsdevel@...r.kernel.org, ywang221@...mail.com,
szaka@...s-3g.org
Subject: [2.6.26 patch] fuse: fix thinko in max I/O size calucation
From: Miklos Szeredi <mszeredi@...e.cz>
Use max not min to enforce a lower limit on the max I/O size.
This bug was introduced by
commit e5d9a0df07484d6d191756878c974e4307fb24ce
Author: Miklos Szeredi <mszeredi@...e.cz>
Date: Wed Apr 30 00:54:44 2008 -0700
fuse: fix max i/o size calculation
Thanks to Brian Wang for noticing.
Reported-by: Brian Wang <ywang221@...mail.com>
CC: Szabolcs Szakacsits <szaka@...s-3g.org>
Signed-off-by: Miklos Szeredi <mszeredi@...e.cz>
---
fs/fuse/inode.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: linux-2.6/fs/fuse/inode.c
===================================================================
--- linux-2.6.orig/fs/fuse/inode.c 2008-06-17 17:55:38.000000000 +0200
+++ linux-2.6/fs/fuse/inode.c 2008-06-17 17:55:48.000000000 +0200
@@ -591,7 +591,7 @@ static void process_init_reply(struct fu
fc->bdi.ra_pages = min(fc->bdi.ra_pages, ra_pages);
fc->minor = arg->minor;
fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
- fc->max_write = min_t(unsigned, 4096, fc->max_write);
+ fc->max_write = max_t(unsigned, 4096, fc->max_write);
fc->conn_init = 1;
}
fuse_put_request(fc, req);
@@ -667,7 +667,7 @@ static int fuse_fill_super(struct super_
fc->flags = d.flags;
fc->user_id = d.user_id;
fc->group_id = d.group_id;
- fc->max_read = min_t(unsigned, 4096, d.max_read);
+ fc->max_read = max_t(unsigned, 4096, d.max_read);
/* Used by get_root_inode() */
sb->s_fs_info = fc;
--
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