Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753498Ab0HWIX0 (ORCPT ); Mon, 23 Aug 2010 04:23:26 -0400 Received: from mail-vw0-f46.google.com ([209.85.212.46]:33908 "EHLO mail-vw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752063Ab0HWIXY convert rfc822-to-8bit (ORCPT ); Mon, 23 Aug 2010 04:23:24 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=SFIxFDtlMiGhFicjZAT/DM+Dj0/8Ua/5bzWA+iLxebUrwrGKFMueeGkkbg4+XPpvKK R2fk9L35/NFpWq3tl8jErs1UMrKxNSKFalfjX8s/gLKfWsHlQyv2Hi1ZYhiw+cUZ2uAV ZuQs7EhsUPW3iwceMHduQ0nJ/OuLHwoZ+PToQ= MIME-Version: 1.0 In-Reply-To: References: From: Mike Frysinger Date: Mon, 23 Aug 2010 04:22:58 -0400 Message-ID: Subject: Re: [PATCH 1/1] posix clocks: introduce syscall for clock tuning. To: Richard Cochran Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1280 Lines: 33 On Mon, Aug 23, 2010 at 04:16, Richard Cochran wrote: > --- a/arch/blackfin/include/asm/unistd.h > +++ b/arch/blackfin/include/asm/unistd.h > @@ -389,8 +389,9 @@ >  #define __NR_rt_tgsigqueueinfo 368 >  #define __NR_perf_event_open   369 >  #define __NR_recvmmsg          370 > +#define __NR_clock_adjtime     371 > > -#define __NR_syscall           371 > +#define __NR_syscall           372 >  #define NR_syscalls            __NR_syscall > >  /* Old optional stuff no one actually uses */ > --- a/arch/blackfin/mach-common/entry.S > +++ b/arch/blackfin/mach-common/entry.S > @@ -1628,6 +1628,7 @@ ENTRY(_sys_call_table) >        .long _sys_rt_tgsigqueueinfo >        .long _sys_perf_event_open >        .long _sys_recvmmsg             /* 370 */ > +       .long _sys_clock_adjtime > >        .rept NR_syscalls-(.-_sys_call_table)/4 >        .long _sys_ni_syscall FYI, this is going to hit a conflict as i'm about to push out an update to wire up the new 2.6.36 syscalls -mike -- 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/