lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <202409151152.pJ4ukp5k-lkp@intel.com>
Date: Sun, 15 Sep 2024 11:18:26 +0800
From: kernel test robot <lkp@...el.com>
To: Lucas De Marchi <lucas.demarchi@...el.com>
Cc: oe-kbuild-all@...ts.linux.dev, linux-kernel@...r.kernel.org,
	Rodrigo Vivi <rodrigo.vivi@...el.com>,
	Matt Roper <matthew.d.roper@...el.com>
Subject: drivers/gpu/drm/xe/xe_rtp.c:151:2-3: Unneeded semicolon

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   0babf683783ddca06551537c6781e413cfe8d27b
commit: 72906d340b60f3dae545deef77376a0f598bece7 drm/xe/rtp: Split rtp process initialization
date:   9 months ago
config: alpha-randconfig-r062-20240915 (https://download.01.org/0day-ci/archive/20240915/202409151152.pJ4ukp5k-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 13.3.0

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202409151152.pJ4ukp5k-lkp@intel.com/

cocci warnings: (new ones prefixed by >>)
>> drivers/gpu/drm/xe/xe_rtp.c:151:2-3: Unneeded semicolon

vim +151 drivers/gpu/drm/xe/xe_rtp.c

   134	
   135	static void rtp_get_context(struct xe_rtp_process_ctx *ctx,
   136				    struct xe_hw_engine **hwe,
   137				    struct xe_gt **gt,
   138				    struct xe_device **xe)
   139	{
   140		switch (ctx->type) {
   141		case XE_RTP_PROCESS_TYPE_GT:
   142			*hwe = NULL;
   143			*gt = ctx->gt;
   144			*xe = gt_to_xe(*gt);
   145			break;
   146		case XE_RTP_PROCESS_TYPE_ENGINE:
   147			*hwe = ctx->hwe;
   148			*gt = (*hwe)->gt;
   149			*xe = gt_to_xe(*gt);
   150			break;
 > 151		};
   152	}
   153	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ