Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1592669 > unrolled thread

[PATCH 4/4] Drivers: hv: util: don't forget to init host_ts.lock

Started bykys@exchange.microsoft.com
First post2017-03-05 02:20 +0100
Last post2017-03-05 02:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 4/4] Drivers: hv: util: don't forget to init host_ts.lock kys@exchange.microsoft.com - 2017-03-05 02:20 +0100

#1592669 — [PATCH 4/4] Drivers: hv: util: don't forget to init host_ts.lock

Fromkys@exchange.microsoft.com
Date2017-03-05 02:20 +0100
Subject[PATCH 4/4] Drivers: hv: util: don't forget to init host_ts.lock
Message-ID<tht06-Th-3@gated-at.bofh.it>
From: Dexuan Cui <decui@microsoft.com>

Without the patch, I always get a "BUG: spinlock bad magic" warning.

Fixes: 3716a49a81ba ("hv_utils: implement Hyper-V PTP source")

Signed-off-by: Dexuan Cui <decui@microsoft.com>
Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
Cc: "K. Y. Srinivasan" <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Stephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
---
 drivers/hv/hv_util.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/hv/hv_util.c b/drivers/hv/hv_util.c
index 3042eaa..186b100 100644
--- a/drivers/hv/hv_util.c
+++ b/drivers/hv/hv_util.c
@@ -590,6 +590,8 @@ static int hv_timesync_init(struct hv_util_service *srv)
 	if (!hyperv_cs)
 		return -ENODEV;
 
+	spin_lock_init(&host_ts.lock);
+
 	INIT_WORK(&wrk.work, hv_set_host_time);
 
 	/*
-- 
1.7.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web