Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751765AbbKETb5 (ORCPT ); Thu, 5 Nov 2015 14:31:57 -0500 Received: from mail-yk0-f171.google.com ([209.85.160.171]:35674 "EHLO mail-yk0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750718AbbKETbz (ORCPT ); Thu, 5 Nov 2015 14:31:55 -0500 MIME-Version: 1.0 In-Reply-To: <563BA0B3.6080506@codeaurora.org> References: <1446698789-19308-1-git-send-email-okaya@codeaurora.org> <1446698789-19308-3-git-send-email-okaya@codeaurora.org> <563B7180.2000405@codeaurora.org> <563BA0B3.6080506@codeaurora.org> Date: Thu, 5 Nov 2015 21:31:54 +0200 Message-ID: Subject: Re: [PATCH 3/4] scsi: fix compiler warning for sg From: Andy Shevchenko To: Sinan Kaya Cc: linux-scsi , timur@codeaurora.org, cov@codeaurora.org, jcm@redhat.com, Doug Gilbert , "James E.J. Bottomley" , "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1209 Lines: 49 On Thu, Nov 5, 2015 at 8:32 PM, Sinan Kaya wrote: > On 11/5/2015 1:07 PM, Andy Shevchenko wrote: > Let's try again. > > static inline u64 mult_frac64(u64 x, u32 numer, u32 denom) { > u64 rem = x % denom; > u64 quot = do_div(x, denom); > u64 mul = rem * numer; > > return (quot * numer) + do_div(mul, denom); > } First of all why not to put this to generic header? We have math64.h and kernel.h. Might be a good idea (needs to check current users) to move mult_frac to math64.h. Then, x % y is already a problem. After all, you seems messed quot and remainder. What about something like #if BITS_PER_LONG == 64 #define mult_frac64(x,n,d) mult_frac(x,n,d) #else static inline u64 mult_frac64(u64 x, u32 numer, u32 denom) { u64 r1 = do_div(x, denom); u64 r2 = r1 * numer; do_div(r2, denom); return (x * numer) + r2; } #endif ? -- With Best Regards, Andy Shevchenko -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/