From: Eric Sandeen <sandeen@redhat.com>
To: Jan Kara <jack@suse.cz>
Cc: Julia Lawall <julia@diku.dk>, linux-ext4@vger.kernel.org
Subject: Re: [PATCH 1/4] fs/ext3/balloc.c: delete useless initialization
Date: Fri, 05 Aug 2011 12:24:45 -0500 [thread overview]
Message-ID: <4E3C275D.1030307@redhat.com> (raw)
In-Reply-To: <20110804104003.GH17196@quack.suse.cz>
On 8/4/11 5:40 AM, Jan Kara wrote:
> On Thu 04-08-11 12:29:31, Julia Lawall wrote:
>> From: Julia Lawall <julia@diku.dk>
>>
>> Delete nontrivial initialization that is immediately overwritten by the
>> result of an allocation function.
> Thanks. Merged.
Just FWIW, I was curious how this ended up here.
It looks like this has been there since 2005, and both
lines went in in the same commit (i.e. it didn't creep in over time).
http://git.kernel.org/?p=linux/kernel/git/torvalds/old-2.6-bkcvs.git;a=commitdiff;h=a66d457d8878fe8d09bc81f0d5e6ac40caec6eb7
-Eric
> Honza
>
>>
>> The semantic match that makes this change is as follows:
>> (http://coccinelle.lip6.fr/)
>>
>> // <smpl>
>> @@
>> type T;
>> identifier i;
>> expression e;
>> @@
>>
>> (
>> T i = \(0\|NULL\|ERR_PTR(...)\);
>> |
>> -T i = e;
>> +T i;
>> )
>> ... when != i
>> i = \(kzalloc\|kcalloc\|kmalloc\)(...);
>>
>> // </smpl>
>>
>> Signed-off-by: Julia Lawall <julia@diku.dk>
>>
>> ---
>> fs/ext3/balloc.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff -u -p a/fs/ext3/balloc.c b/fs/ext3/balloc.c
>> --- a/fs/ext3/balloc.c
>> +++ b/fs/ext3/balloc.c
>> @@ -427,7 +427,7 @@ static inline int rsv_is_empty(struct ex
>> void ext3_init_block_alloc_info(struct inode *inode)
>> {
>> struct ext3_inode_info *ei = EXT3_I(inode);
>> - struct ext3_block_alloc_info *block_i = ei->i_block_alloc_info;
>> + struct ext3_block_alloc_info *block_i;
>> struct super_block *sb = inode->i_sb;
>>
>> block_i = kmalloc(sizeof(*block_i), GFP_NOFS);
>>
next prev parent reply other threads:[~2011-08-05 17:25 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1312453774-23333-1-git-send-email-julia@diku.dk>
2011-08-04 10:29 ` [PATCH 1/4] fs/ext3/balloc.c: delete useless initialization Julia Lawall
2011-08-04 10:40 ` Jan Kara
2011-08-05 17:24 ` Eric Sandeen [this message]
2011-08-05 19:08 ` Julia Lawall
2011-08-04 10:29 ` [PATCH 2/4] fs/ext2/balloc.c: " Julia Lawall
2011-08-04 10:39 ` Jan Kara
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=4E3C275D.1030307@redhat.com \
--to=sandeen@redhat.com \
--cc=jack@suse.cz \
--cc=julia@diku.dk \
--cc=linux-ext4@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 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).