From: Al Viro <viro@ftp.linux.org.uk>
To: rae l <crquan@gmail.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>,
linux-kernel@vger.kernel.org, Greg Kroah-Hartman <gregkh@suse.de>
Subject: Re: [RFC] fs/super.c: Why alloc_super use a static variable default_op?
Date: Wed, 25 Jul 2007 05:37:44 +0100 [thread overview]
Message-ID: <20070725043744.GB27237@ftp.linux.org.uk> (raw)
In-Reply-To: <91b13c310707242129u6aa09166j74ad42d31adc4ad7@mail.gmail.com>
On Wed, Jul 25, 2007 at 12:29:17PM +0800, rae l wrote:
> But is it valuable? Compared to a waste of sizeof(struct super_block)
> bytes memory.
It's less that struct super_block, actually.
> When some code want to refer fs_type->s_op, it almost always want to
> refer some function pointer in s_op with fs_type->s_op->***, but all
> pointers in default_op are all NULLs, what about this scenario?
Yes, and? You still need one test instead of two. Which gets you
more than 21 words used by that sucker, only in .text instead of .bss.
> and if you do grep s_op in the source code, you will found nowhere
> will want to test s_op or dependent on s_op not NULL.
What? fs/inode.c:
if (sb->s_op->alloc_inode)
inode = sb->s_op->alloc_inode(sb);
else
inode = (struct inode *) kmem_cache_alloc(inode_cachep, GFP_KERNEL);
and the same goes everywhere else. Of course we don't check for
sb->s_op not being NULL - that's exactly why we are safe skipping such
tests.
next prev parent reply other threads:[~2007-07-25 4:37 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-25 3:48 [RFC] fs/super.c: Why alloc_super use a static variable default_op? rae l
2007-07-25 4:14 ` Al Viro
2007-07-25 4:29 ` rae l
2007-07-25 4:37 ` Al Viro [this message]
2007-07-25 5:21 ` rae l
2007-07-25 6:39 ` Al Viro
2007-07-25 6:43 ` Al Viro
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=20070725043744.GB27237@ftp.linux.org.uk \
--to=viro@ftp.linux.org.uk \
--cc=crquan@gmail.com \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=viro@zeniv.linux.org.uk \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox