From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH] lib/checksum.c: optimize do_csum a bit Date: Thu, 07 Jul 2011 04:29:25 -0700 (PDT) Message-ID: <20110707.042925.1609726410655229616.davem@davemloft.net> References: <1310037529-30854-1-git-send-email-abbotti@mev.co.uk> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, arnd@arndb.de, linux-kernel@vger.kernel.org To: abbotti@mev.co.uk Return-path: In-Reply-To: <1310037529-30854-1-git-send-email-abbotti@mev.co.uk> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org From: Ian Abbott Date: Thu, 7 Jul 2011 12:18:49 +0100 > Reduce the number of variables modified by the loop in do_csum() by 1, > which seems like a good idea. On Nios II (a RISC CPU with 3-operand > instruction set) it reduces the loop from 7 to 6 instructions, including > the conditional branch. > > Signed-off-by: Ian Abbott I think you'll overshoot past the end of the buffer when there are trailing bytes to handle. The whole reason we need the count variable is to handle those kinds of cases.