Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S263347AbTI2NZZ (ORCPT ); Mon, 29 Sep 2003 09:25:25 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S263349AbTI2NZY (ORCPT ); Mon, 29 Sep 2003 09:25:24 -0400 Received: from petasus.isw.intel.com ([192.55.37.196]:60150 "EHLO petasus.isw.intel.com") by vger.kernel.org with ESMTP id S263347AbTI2NZS (ORCPT ); Mon, 29 Sep 2003 09:25:18 -0400 Date: Mon, 29 Sep 2003 15:25:19 +0200 (CEST) From: Artur Klauser To: linux-kernel@vger.kernel.org cc: Artur Klauser Subject: div64.h:do_div() bug Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org I've found that a bug in asm-arm/div64.h:do_div() is preventing correct conversion of timestamps in smbfs (and probably ntfs as well) from NT to Unix format. I'll post a patch that fixes the bug, but I think it is also present in other architectures - at least SPARC, SH, and CRIS look suspicious. If people with access to these architectures could run the following small test and let me know the outcome, I can fix it there too - thanks. //----------------------------------------------------------------------------- #define __KERNEL__ #include // get kernel definition of u64, u32 #undef __KERNEL__ #include // get definition of do_div() #include main () { union { u64 n64; u32 n32[2]; } in, out; in.n32[0] = 1; in.n32[1] = 1; out = in; do_div(out.n64, 1); if (in.n64 != out.n64) { printf("FAILURE: asm/div64.h:do_div() is broken for 64-bit dividends\n"); exit(1); } else { printf("Congratulations: asm/div64.h:do_div() handles 64-bit dividends\n"); } return 0; } //----------------------------------------------------------------------------- - 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/