From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5C761C433F5 for ; Mon, 24 Jan 2022 17:06:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S244106AbiAXRGz (ORCPT ); Mon, 24 Jan 2022 12:06:55 -0500 Received: from mga05.intel.com ([192.55.52.43]:32113 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241403AbiAXRGv (ORCPT ); Mon, 24 Jan 2022 12:06:51 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1643044011; x=1674580011; h=date:from:to:cc:subject:message-id:mime-version; bh=Qd39rwROJKB7DIvk/PUIpvF42egNf6/G2c6rmIfyKr0=; b=UnZ41U4KDqJTPit/pm1lwdiJLZL1umeZy5FX60eA68GnvgDh8QvZk150 2QLvmUhGPBun4sHZeJXYRxVS4zKlwVtDY/pJX8/+yHwBTp3qzQqae3jlS bZtegt/dD76jNBviwWhU+L/aWeuK5wYs5dwjlixAzRmc71F8CGzWo4h3T mxfUcZhxoySWgfq2MsrRzU65RcCpMwHAxaCx6L/KJqhHHPjrdyxMxS1KF 7bz1dfvLV43WNssJM9BJUqdBTXZFxRqxLNICf6ZUvNyeeIgtipHGtjpVq f8jYRq/XD2R16iS0w4sleRixQsl7sR2xKilqahmMdK1AugK7mSFgwfkMI w==; X-IronPort-AV: E=McAfee;i="6200,9189,10236"; a="332448538" X-IronPort-AV: E=Sophos;i="5.88,311,1635231600"; d="scan'208";a="332448538" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Jan 2022 09:05:59 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,311,1635231600"; d="scan'208";a="520020358" Received: from lkp-server01.sh.intel.com (HELO 276f1b88eecb) ([10.239.97.150]) by orsmga007.jf.intel.com with ESMTP; 24 Jan 2022 09:05:58 -0800 Received: from kbuild by 276f1b88eecb with local (Exim 4.92) (envelope-from ) id 1nC2mz-000Ieg-Gp; Mon, 24 Jan 2022 17:05:57 +0000 Date: Tue, 25 Jan 2022 01:05:18 +0800 From: kernel test robot To: Nick Terrell Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org Subject: arch/x86/boot/compressed/../../../../lib/zstd/decompress/zstd_decompress_block.c:1390 ZSTD_decompressSequences() warn: inconsistent indenting Message-ID: <202201250105.FTvWmcNq-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: dd81e1c7d5fb126e5fbc5c9e334d7b3ec29a16a0 commit: e0c1b49f5b674cca7b10549c53b3791d0bbc90a8 lib: zstd: Upgrade to latest upstream zstd version 1.4.10 date: 3 months ago config: x86_64-randconfig-m001 (https://download.01.org/0day-ci/archive/20220125/202201250105.FTvWmcNq-lkp@intel.com/config) compiler: gcc-9 (Debian 9.3.0-22) 9.3.0 If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot New smatch warnings: arch/x86/boot/compressed/../../../../lib/zstd/decompress/zstd_decompress_block.c:1390 ZSTD_decompressSequences() warn: inconsistent indenting arch/x86/boot/compressed/../../../../lib/zstd/decompress/zstd_decompress_block.c:1414 ZSTD_decompressSequencesLong() warn: inconsistent indenting Old smatch warnings: arch/x86/boot/compressed/../../../../lib/zstd/decompress/huf_decompress.c:397 HUF_decompress4X1_usingDTable_internal_body() warn: maybe use && instead of & arch/x86/boot/compressed/../../../../lib/zstd/decompress/huf_decompress.c:397 HUF_decompress4X1_usingDTable_internal_body() warn: maybe use && instead of & arch/x86/boot/compressed/../../../../lib/zstd/decompress/huf_decompress.c:850 HUF_decompress4X2_usingDTable_internal_body() warn: maybe use && instead of & arch/x86/boot/compressed/../../../../lib/zstd/decompress/huf_decompress.c:850 HUF_decompress4X2_usingDTable_internal_body() warn: maybe use && instead of & arch/x86/boot/compressed/misc.c:292 parse_elf() warn: ignoring unreachable code. vim +1390 arch/x86/boot/compressed/../../../../lib/zstd/decompress/zstd_decompress_block.c 1369 1370 typedef size_t (*ZSTD_decompressSequences_t)( 1371 ZSTD_DCtx* dctx, 1372 void* dst, size_t maxDstSize, 1373 const void* seqStart, size_t seqSize, int nbSeq, 1374 const ZSTD_longOffset_e isLongOffset, 1375 const int frame); 1376 1377 #ifndef ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG 1378 static size_t 1379 ZSTD_decompressSequences(ZSTD_DCtx* dctx, void* dst, size_t maxDstSize, 1380 const void* seqStart, size_t seqSize, int nbSeq, 1381 const ZSTD_longOffset_e isLongOffset, 1382 const int frame) 1383 { 1384 DEBUGLOG(5, "ZSTD_decompressSequences"); 1385 #if DYNAMIC_BMI2 1386 if (dctx->bmi2) { 1387 return ZSTD_decompressSequences_bmi2(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); 1388 } 1389 #endif > 1390 return ZSTD_decompressSequences_default(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); 1391 } 1392 #endif /* ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG */ 1393 1394 1395 #ifndef ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT 1396 /* ZSTD_decompressSequencesLong() : 1397 * decompression function triggered when a minimum share of offsets is considered "long", 1398 * aka out of cache. 1399 * note : "long" definition seems overloaded here, sometimes meaning "wider than bitstream register", and sometimes meaning "farther than memory cache distance". 1400 * This function will try to mitigate main memory latency through the use of prefetching */ 1401 static size_t 1402 ZSTD_decompressSequencesLong(ZSTD_DCtx* dctx, 1403 void* dst, size_t maxDstSize, 1404 const void* seqStart, size_t seqSize, int nbSeq, 1405 const ZSTD_longOffset_e isLongOffset, 1406 const int frame) 1407 { 1408 DEBUGLOG(5, "ZSTD_decompressSequencesLong"); 1409 #if DYNAMIC_BMI2 1410 if (dctx->bmi2) { 1411 return ZSTD_decompressSequencesLong_bmi2(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); 1412 } 1413 #endif > 1414 return ZSTD_decompressSequencesLong_default(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); 1415 } 1416 #endif /* ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT */ 1417 1418 1419 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org