Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753426AbbELPeN (ORCPT ); Tue, 12 May 2015 11:34:13 -0400 Received: from mout.kundenserver.de ([212.227.17.13]:54819 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753078AbbELPeL (ORCPT ); Tue, 12 May 2015 11:34:11 -0400 From: Arnd Bergmann To: Baolin Wang Cc: tglx@linutronix.de, linux-kernel@vger.kernel.org, y2038@lists.linaro.org Subject: Re: [PATCH v3 06/23] posix-timers:Convert to the 64bit methods for the timer_gettime syscall function Date: Tue, 12 May 2015 17:33:59 +0200 Message-ID: <26188627.asc9jptoev@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <1431439674-16235-1-git-send-email-baolin.wang@linaro.org> References: <1431439674-16235-1-git-send-email-baolin.wang@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:X1J0UzBgXX5eO9mjhsS3iBHUyFR070GIo4C7kxeR/PzdLWu4EtD dO8RPx+U4ufA/elW35JiY1Vx79dAnqe0+j6fBjNASZHm/BFCQO+CdBLqk4Qvi2lMI90Sd8e W6UozDcI5LOqamvhamnEQEE3i2VYSGTfA7f6awPrz4vr1sKtvIG5ucoQQS24BwCJR/IPiLj Fs1l1Hatg4eWhvNZhTrnA== X-UI-Out-Filterresults: notjunk:1; Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1047 Lines: 27 On Tuesday 12 May 2015 22:07:53 Baolin Wang wrote: > } > > +static void default_timer_get64(struct k_itimer *timr, > + struct itimerspec64 *cur_setting64) > +{ > + struct itimerspec cur_setting; > + struct k_clock *kc = clockid_to_kclock(timr->it_clock); > + > + kc->timer_get(timr, &cur_setting); > + *cur_setting64 = itimerspec_to_itimerspec64(&cur_setting); > +} > + > The new version is correct, but when I asked you in private to send the update, what I meant was a reply to my email, and only the updated function for the sake of discussion. You have now sent the patch as a new thread, which means we have two email conversations with the same subject line and different contents, which is rather confusing and should be avoided. Arnd -- 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/