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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <201601230336.WZKkXVfa%fengguang.wu@intel.com>
Date:	Sat, 23 Jan 2016 03:15:53 +0800
From:	kbuild test robot <fengguang.wu@...el.com>
To:	Junghak Sung <jh1009.sung@...sung.com>
Cc:	kbuild-all@...org, linux-kernel@...r.kernel.org,
	Mauro Carvalho Chehab <m.chehab@...sung.com>,
	linux-media@...r.kernel.org,
	Geunyoung Kim <nenggun.kim@...sung.com>,
	Hans Verkuil <hverkuil@...all.nl>
Subject: drivers/media/v4l2-core/videobuf2-core.c:2784:33-34: Unneeded
 semicolon

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   3e1e21c7bfcfa9bf06c07f48a13faca2f62b3339
commit: af3bac1a7c8a21ff4f4edede397cba8e3f8ee503 [media] media: videobuf2: Move vb2_fileio_data and vb2_thread to core part
date:   5 weeks ago


coccinelle warnings: (new ones prefixed by >>)

>> drivers/media/v4l2-core/videobuf2-core.c:2784:33-34: Unneeded semicolon

vim +2784 drivers/media/v4l2-core/videobuf2-core.c

  2768				call_void_qop(q, wait_finish, q);
  2769				if (!threadio->stop)
  2770					ret = vb2_core_dqbuf(q, b, 0);
  2771				call_void_qop(q, wait_prepare, q);
  2772				dprintk(5, "file io: vb2_dqbuf result: %d\n", ret);
  2773			}
  2774			if (ret || threadio->stop)
  2775				break;
  2776			try_to_freeze();
  2777	
  2778			vb = q->bufs[b->index];
  2779			if (b->state == VB2_BUF_STATE_DONE)
  2780				if (threadio->fnc(vb, threadio->priv))
  2781					break;
  2782			call_void_qop(q, wait_finish, q);
  2783			if (copy_timestamp)
> 2784				b->timestamp = ktime_get_ns();;
  2785			if (!threadio->stop)
  2786				ret = vb2_core_qbuf(q, b->index, b);
  2787			call_void_qop(q, wait_prepare, q);
  2788			if (ret || threadio->stop)
  2789				break;
  2790		}
  2791	
  2792		/* Hmm, linux becomes *very* unhappy without this ... */

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ