[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <AANLkTimbXiu=iXHkE5rnwH9jL5fQ-Z7R2V1kQP2eFGM_@mail.gmail.com>
Date: Wed, 15 Dec 2010 07:51:36 -0800
From: Linus Torvalds <torvalds@...ux-foundation.org>
To: Pekka Enberg <penberg@...nel.org>
Cc: Stefani Seibold <stefani@...bold.net>,
linux-kernel@...r.kernel.org, akpm@...ux-foundation.org,
Al Viro <viro@...iv.linux.org.uk>
Subject: Re: [PATCH] cramfs: generate unique inode number for better inode
cache usage
On Wed, Dec 15, 2010 at 12:15 AM, Pekka Enberg <penberg@...nel.org> wrote:
>
> I think Linus is after something like this:
That works for me, but I hate the double "switch()" statement checking
the same thing.
Why is the camino() function not just doing something like
static unsigned int cramino(struct cramfs_inode *ino, unsigned int
dirent_offset)
{
unsigned int data_offset = ino->offset;
return data_offset ? data_offset << 2 : dirent_offset+1;
}
and we can get rid of all the cruddy CRAMINO_UNIQ() and testing of the
mode entirely for that path.
That, together with Pekka's approach seems nice, simple and clean.
Linus
--
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