From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15102 invoked by alias); 2 Nov 2016 22:34:04 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 15071 invoked by uid 89); 2 Nov 2016 22:34:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy= X-HELO: mail-ua0-f182.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:to:references:cc:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=wl0uP1kUMtsknOqtDyrpUwGxlTPs7HNKA73DZfT+T8Q=; b=fk6EU3M3r3brUI/797vHvJ2KVGd3P6h9N02s6hzXk2d/FDEyOLA1OCoHV3vInnM7jq +0IvzFwr5H+PGQ5mqWoYLv47RLpPiB3ShWHsqOcAkRh2CvDIZYn6bILoQS/WUpI9o4sR 2dhOGSt7sgwKZ37vwAAkw6UN6+J/9K1IXgWIvk+txknMlE6Ax4KoSwDhQ1OBEdQkxuMQ 9v3E8cj+UhY0sopdhHLg+YVQQOPef8ac1RsxG5DcXuUkvXyab/R2/hbiMVOT4bh6LfbW if0KJCE2Q4pleS6cTYfO2zKhQsZ3pITN8qHf9+BIyJ6yZYNEMmAiqloR1WnbQhwOZzMH +42Q== X-Gm-Message-State: ABUngvcmoN/jK0Wb46yOLdG7isI8XPZJ/udtd2AEe1IckgjFBwSlyGSRNcd84jiZkgc0HoCL X-Received: by 10.159.33.136 with SMTP id 8mr3971870uac.153.1478126032112; Wed, 02 Nov 2016 15:33:52 -0700 (PDT) Subject: Re: [PATCH v2 01/16] Add __ASSUME_SYSVIPC_SYSCALL for Linux To: Joseph Myers References: <1478114813-3526-1-git-send-email-adhemerval.zanella@linaro.org> <1478114813-3526-2-git-send-email-adhemerval.zanella@linaro.org> <4215aed1-3fb5-41c0-b18b-40c1f7357e18@linaro.org> Cc: libc-alpha@sourceware.org From: Adhemerval Zanella Message-ID: Date: Wed, 02 Nov 2016 22:34:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <4215aed1-3fb5-41c0-b18b-40c1f7357e18@linaro.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-SW-Source: 2016-11/txt/msg00091.txt.bz2 On 02/11/2016 20:27, Adhemerval Zanella wrote: > > > On 02/11/2016 19:10, Joseph Myers wrote: >> On Wed, 2 Nov 2016, Adhemerval Zanella wrote: >> >>> The architectures that only supports ipc syscall are: >>> >>> - i386, m68k, microblaze, mips32, powerpc (powerpc32, powerpc64, and >>> powerpc64le), s390 (32 and 64 bits), sh, sparc32, and sparc64. >> >> You list microblaze in this list, but I don't see a corresponding >> kernel-features.h #undef for it. >> > > It is indeed a mistake from the script I used to check various kernel > syscall table list. On 3.2, microblaze code [1] in fact defines > the old ipc syscall as 'sys_ni_syscall', so the architecture only > supports wire ones. > > I am rechecking all architectures to see I missed something related. Microblaze seems the only one that I got a wrong result (basically my script was grepping a comment about sys_ipc without checking if it was defined as sys_ni_syscall).