Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966176Ab3E2Nhc (ORCPT ); Wed, 29 May 2013 09:37:32 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:50496 "EHLO mail-pb0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966078Ab3E2Nh3 (ORCPT ); Wed, 29 May 2013 09:37:29 -0400 Message-ID: <1369834647.5109.15.camel@edumazet-glaptop> Subject: Re: [PATCH v6 net-next 2/5] net: implement support for low latency socket polling From: Eric Dumazet To: Eliezer Tamir Cc: David Miller , linux-kernel@vger.kernel.org, netdev@vger.kernel.org, Jesse Brandeburg , Don Skidmore , e1000-devel@lists.sourceforge.net, Willem de Bruijn , Andi Kleen , HPA , Eilon Greenstien , Or Gerlitz , Alex Rosenbaum , Eliezer Tamir Date: Wed, 29 May 2013 06:37:27 -0700 In-Reply-To: <20130529063935.27486.18610.stgit@ladj378.jer.intel.com> References: <20130529063916.27486.3841.stgit@ladj378.jer.intel.com> <20130529063935.27486.18610.stgit@ladj378.jer.intel.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 880 Lines: 30 On Wed, 2013-05-29 at 09:39 +0300, Eliezer Tamir wrote: > +/* we don't mind a ~2.5% imprecision */ > +#define TSC_MHZ (tsc_khz >> 10) > + > +static inline unsigned long ll_end_time(void) > +{ > + return TSC_MHZ * ACCESS_ONCE(sysctl_net_ll_poll) + get_cycles(); > +}static inline unsigned long ll_end_time(void) >+{ >+ return TSC_MHZ * ACCESS_ONCE(sysctl_net_ll_poll) + get_cycles(); >+} This can overflow. Multiply is giving 32bits, as tsc_khz is an int, and sysctl_net_ll_poll is an int. unsigned long sysctl_net_ll_poll ? Also, if we want this to work on i386, the correct type to use for ll_end_time(void) would be cycles_t -- 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/