From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 0D88E1B652C; Wed, 23 Oct 2024 17:35:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=13.77.154.182 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729704916; cv=none; b=MqOHG2l2nbkmav8ucR7nChoYo2Fdbr9rVzaKVEYEwNEakT7+HB3Fvdi5gSMzMn6djYBCVckJXfRsAh0dnQawtc5x+5bf1dQ/Lj3rihsjORRQu0WOmouitGJH47FAHt0idUBSkABhAcJjC+GozE5EBXrxkoN54yrOMCPTw9rrof8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729704916; c=relaxed/simple; bh=m4jhBK/qe893YUqdIl/t9/zYvtxcRLKniJp1Go7azQo=; h=Message-ID:Date:MIME-Version:Cc:Subject:To:References:From: In-Reply-To:Content-Type; b=Eu+zytELkGbWUdV627TVNx4UG49ureFiodv6vJH/dv2Zqoh/Kr+q6p8VIEALP3cYAl91FtIbMxq1Z/OQgoWqoYZ0G7kYihTyhlevfNs7loFcpQLZhiO6RExXCOAQnk06zvSepZmZGVLHSA25EHl4gBsMWrEIpTx0wugtyx5Pb2s= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.microsoft.com; spf=pass smtp.mailfrom=linux.microsoft.com; dkim=pass (1024-bit key) header.d=linux.microsoft.com header.i=@linux.microsoft.com header.b=PWfVDFYa; arc=none smtp.client-ip=13.77.154.182 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.microsoft.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.microsoft.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.microsoft.com header.i=@linux.microsoft.com header.b="PWfVDFYa" Received: from [10.16.80.132] (unknown [131.107.174.132]) by linux.microsoft.com (Postfix) with ESMTPSA id 2C79F210EF41; Wed, 23 Oct 2024 10:35:08 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 2C79F210EF41 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1729704908; bh=2fI0FmVSzp3CATjVEDRtNc7hnO2erQWIG9OlIs0Hrx4=; h=Date:Cc:Subject:To:References:From:In-Reply-To:From; b=PWfVDFYaoi2c60c6z3sljZNROBIMiixOEq2elKTyot8pZcjRcIeZCGThRZoStiOzN L/g8rVyPt6IN/I4xojLWS2zB3sdFT27pUfdR+sFDrYUVzkWPa+ltp62ScsRHQgr4tG L+gVLdrjUpjG2rHHghoWAxXOO4w1kUSPGeweaWhw= Message-ID: <477f31d9-b696-479e-9b5b-7bfbbeaa6c47@linux.microsoft.com> Date: Wed, 23 Oct 2024 10:35:11 -0700 Precedence: bulk X-Mailing-List: linux-hyperv@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Cc: eahariha@linux.microsoft.com, Naman Jain Subject: Re: [PATCH 2/2] drivers: hv: Convert open-coded timeouts to secs_to_jiffies() To: Praveen Kumar , lkp@intel.com, "K. Y. Srinivasan" , Haiyang Zhang , Wei Liu , Dexuan Cui , "open list:Hyper-V/Azure CORE AND DRIVERS" , open list References: <20241022185353.2080021-1-eahariha@linux.microsoft.com> <20241022185353.2080021-2-eahariha@linux.microsoft.com> <288243cd-51d9-4c76-8337-298e9bf339d5@linux.microsoft.com> Content-Language: en-US From: Easwar Hariharan In-Reply-To: <288243cd-51d9-4c76-8337-298e9bf339d5@linux.microsoft.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 10/22/2024 10:36 PM, Praveen Kumar wrote: > On 23-10-2024 00:23, Easwar Hariharan wrote: >> We have several places where timeouts are open-coded as N (seconds) * HZ, >> but best practice is to use the utility functions from jiffies.h. Convert >> the timeouts to be compliant. This doesn't fix any bugs, it's a simple code >> improvement. >> >> Signed-off-by: Easwar Hariharan > > I think this is second version of this patch series? > > Please make sure, you update the patch version details and document the changes done in the current version. > This is the first non-RFC version, but yes, I should have documented the changes and linked the RFC version. Thanks, Easwar