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: <88aa7c5c-2ac3-52ad-2645-6eff21c8c0f9@gmail.com>
Date:   Tue, 7 Feb 2023 04:46:08 +0100 (CET)
From:   Jesper Juhl <jesperjuhl76@...il.com>
To:     linux-kernel@...r.kernel.org
cc:     trivial@...nel.org, kvm@...r.kernel.org,
        Zhenyu Wang <zhenyuw@...ux.intel.com>,
        David Airlie <airlied@...il.com>,
        David Woodhouse <dwmw@...zon.co.uk>
Subject: [PATCH] [Trivial] Remove a few redundant semicolons

>From 2535622b0c2d33cc3cbcfec4e374b58e3e0a0efa Mon Sep 17 00:00:00 2001
From: Jesper Juhl <jesperjuhl76@...il.com>
Date: Tue, 7 Feb 2023 04:40:37 +0100
Subject: [PATCH] Remove a few redundant semicolons

Signed-Off-by: Jesper Juhl <jesperjuhl76@...il.com>

---
  drivers/gpu/drm/i915/gvt/vgpu.c                      | 2 +-
  drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.c       | 2 +-
  tools/testing/selftests/kvm/x86_64/xen_shinfo_test.c | 2 +-
  3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/gvt/vgpu.c b/drivers/gpu/drm/i915/gvt/vgpu.c
index a5497440484f..08ad1bd651f1 100644
--- a/drivers/gpu/drm/i915/gvt/vgpu.c
+++ b/drivers/gpu/drm/i915/gvt/vgpu.c
@@ -323,7 +323,7 @@ int intel_gvt_create_vgpu(struct intel_vgpu *vgpu,
  	ret = idr_alloc(&gvt->vgpu_idr, vgpu, IDLE_VGPU_IDR + 1, GVT_MAX_VGPU,
  		GFP_KERNEL);
  	if (ret < 0)
-		goto out_unlock;;
+		goto out_unlock;

  	vgpu->id = ret;
  	vgpu->sched_ctl.weight = conf->weight;
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.c b/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.c
index 5f20079c3660..204516891ece 100644
--- a/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.c
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.c
@@ -420,7 +420,7 @@ gf100_gr_chan_new(struct nvkm_gr *base, struct nvkm_fifo_chan *fifoch,
  			return ret;
  	} else {
  		ret = nvkm_memory_map(gr->attrib_cb, 0, chan->vmm, chan->attrib_cb,
-				      &args, sizeof(args));;
+				      &args, sizeof(args));
  		if (ret)
  			return ret;
  	}
diff --git a/tools/testing/selftests/kvm/x86_64/xen_shinfo_test.c b/tools/testing/selftests/kvm/x86_64/xen_shinfo_test.c
index 13c75dc18c10..e6a023b9a1f5 100644
--- a/tools/testing/selftests/kvm/x86_64/xen_shinfo_test.c
+++ b/tools/testing/selftests/kvm/x86_64/xen_shinfo_test.c
@@ -97,7 +97,7 @@ struct compat_vcpu_runstate_info {
  	uint32_t state;
  	uint64_t state_entry_time;
  	uint64_t time[5];
-} __attribute__((__packed__));;
+} __attribute__((__packed__));

  struct arch_vcpu_info {
  	unsigned long cr2;
-- 
2.39.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ