[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <965D4A30-6A3A-4A13-8C4C-3D75BF9B4BF1@dilger.ca>
Date: Thu, 17 Jan 2019 10:38:56 -0700
From: Andreas Dilger <adilger@...ger.ca>
To: Mathieu Malaterre <malat@...ian.org>
Cc: Theodore Ts'o <tytso@....edu>,
Ext4 Developers List <linux-ext4@...r.kernel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 1/2] ext4: annotate implicit fall throughs
> On Jan 14, 2019, at 1:39 PM, Mathieu Malaterre <malat@...ian.org> wrote:
>
> There is a plan to build the kernel with -Wimplicit-fallthrough and
> these places in the code produced warnings (W=1). Fix them up.
>
> This commit remove the following warnings:
>
> fs/ext4/hash.c:233:15: warning: this statement may fall through [-Wimplicit-fallthrough=]
> fs/ext4/hash.c:246:15: warning: this statement may fall through [-Wimplicit-fallthrough=]
>
> Signed-off-by: Mathieu Malaterre <malat@...ian.org>
Reviewed-by: Andreas Dilger <adilger@...ger.ca>
> ---
> fs/ext4/hash.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/fs/ext4/hash.c b/fs/ext4/hash.c
> index e22dcfab308b..46b24da33a28 100644
> --- a/fs/ext4/hash.c
> +++ b/fs/ext4/hash.c
> @@ -231,6 +231,7 @@ int ext4fs_dirhash(const char *name, int len, struct dx_hash_info *hinfo)
> break;
> case DX_HASH_HALF_MD4_UNSIGNED:
> str2hashbuf = str2hashbuf_unsigned;
> + /* fall through */
> case DX_HASH_HALF_MD4:
> p = name;
> while (len > 0) {
> @@ -244,6 +245,7 @@ int ext4fs_dirhash(const char *name, int len, struct dx_hash_info *hinfo)
> break;
> case DX_HASH_TEA_UNSIGNED:
> str2hashbuf = str2hashbuf_unsigned;
> + /* fall through */
> case DX_HASH_TEA:
> p = name;
> while (len > 0) {
> --
> 2.19.2
>
Cheers, Andreas
Download attachment "signature.asc" of type "application/pgp-signature" (874 bytes)
Powered by blists - more mailing lists