Re: [PATCH] fs crypto: fix semicolon.cocci warnings

From: Julia Lawall
Date: Wed Feb 17 2016 - 14:29:01 EST




On Wed, 17 Feb 2016, Jaegeuk Kim wrote:

> Hi Julia,
>
> I just submitted crypto patches, so if you don't mind, can I integrate your
> patches into my original ones?

No problem at all.

julia

>
> Thanks,
>
> On Wed, Feb 17, 2016 at 08:30:56AM -0500, Julia Lawall wrote:
> > Remove unneeded semicolon.
> >
> > Generated by: scripts/coccinelle/misc/semicolon.cocci
> >
> > Signed-off-by: Fengguang Wu <fengguang.wu@xxxxxxxxx>
> > Signed-off-by: Julia Lawall <julia.lawall@xxxxxxx>
> > ---
> >
> > crypto.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > --- a/fs/crypto/crypto.c
> > +++ b/fs/crypto/crypto.c
> > @@ -312,7 +312,7 @@ int fscrypt_zeroout_range(struct inode *
> > }
> > bio->bi_bdev = inode->i_sb->s_bdev;
> > bio->bi_iter.bi_sector =
> > - pblk << (inode->i_sb->s_blocksize_bits - 9);;
> > + pblk << (inode->i_sb->s_blocksize_bits - 9);
> > ret = bio_add_page(bio, ciphertext_page,
> > inode->i_sb->s_blocksize, 0);
> > if (ret != inode->i_sb->s_blocksize) {
>