Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1336427 > unrolled thread
| Started by | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| First post | 2016-02-17 14:40 +0100 |
| Last post | 2016-02-17 20:30 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] fs crypto: fix semicolon.cocci warnings Julia Lawall <julia.lawall@lip6.fr> - 2016-02-17 14:40 +0100
Re: [PATCH] fs crypto: fix semicolon.cocci warnings Jaegeuk Kim <jaegeuk@kernel.org> - 2016-02-17 20:00 +0100
Re: [PATCH] fs crypto: fix semicolon.cocci warnings Julia Lawall <julia.lawall@lip6.fr> - 2016-02-17 20:30 +0100
| From | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| Date | 2016-02-17 14:40 +0100 |
| Subject | [PATCH] fs crypto: fix semicolon.cocci warnings |
| Message-ID | <r3auM-73z-49@gated-at.bofh.it> |
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
---
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) {
[toc] | [next] | [standalone]
| From | Jaegeuk Kim <jaegeuk@kernel.org> |
|---|---|
| Date | 2016-02-17 20:00 +0100 |
| Message-ID | <r3fuq-1YZ-13@gated-at.bofh.it> |
| In reply to | #1336427 |
Hi Julia,
I just submitted crypto patches, so if you don't mind, can I integrate your
patches into my original ones?
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@intel.com>
> Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
> ---
>
> 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) {
[toc] | [prev] | [next] | [standalone]
| From | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| Date | 2016-02-17 20:30 +0100 |
| Message-ID | <r3fXs-2qW-15@gated-at.bofh.it> |
| In reply to | #1336662 |
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@intel.com>
> > Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
> > ---
> >
> > 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) {
>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web