From patchwork Fri Nov 20 07:29:43 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Maciej W. Rozycki" X-Patchwork-Id: 546822 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 9BA381402BC for ; Fri, 20 Nov 2015 18:29:55 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b=mOvGpVJN; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:cc:subject:in-reply-to:message-id :references:mime-version:content-type; q=dns; s=default; b=jkusU WNHdFEF7W6jSTQzgP/xsucktQPtbogdFMfDzmLDUhpcd1engPhOHbKS7J5qEK9sI AFwGiXn9B9AiVr0WSWQvYOX1i2k0NBUG/9iCDDCVmnSNs627p9KHlOjuG9E3TPEI 8lso75uot+rviSYsrPKFnUzO8wkxDYQ1hsfyRQ= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:cc:subject:in-reply-to:message-id :references:mime-version:content-type; s=default; bh=5NvHwzkovwT slSc2VbrQ/Oe3MrI=; b=mOvGpVJN6GFX/DJAjrD2uTw/Y4Ign4SFgQnsn0O008b 3/ACuvXg6F3J70etKW5aby/RJOsF/sW2wpB17Wc/XXEKtT4gTJbmRGZmlKVA03+b AcGzV7UF9FOl/teoh3ZP+CpG6lTUm2urTN9CXrPo3NIgAsDVgaGxg7KP3pq0k914 = Received: (qmail 31982 invoked by alias); 20 Nov 2015 07:29:49 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 31971 invoked by uid 89); 20 Nov 2015 07:29:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mailapp01.imgtec.com Date: Fri, 20 Nov 2015 07:29:43 +0000 From: "Maciej W. Rozycki" To: CC: Matthew Fortune , Daniel Sanders , Leonid Yegoshin Subject: [RFC PATCH 1/5] MIPS: linkmap.h: Reformat, add copyright notice In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 * sysdeps/mips/linkmap.h: Add copyright notice. (link_map_machine): Reformat. --- glibc-mips-linkmap-fix.diff Index: glibc/sysdeps/mips/linkmap.h =================================================================== --- glibc.orig/sysdeps/mips/linkmap.h 2015-07-10 13:27:15.000000000 +0100 +++ glibc/sysdeps/mips/linkmap.h 2015-07-10 13:32:17.328030641 +0100 @@ -1,6 +1,24 @@ +/* Machine-specific link map part. MIPS version. + Copyright (C) 2014-2015 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library. If not, see + . */ + struct link_map_machine { - ElfW(Addr) plt; /* Address of .plt */ - ElfW(Word) fpabi; /* FP ABI of the object */ - unsigned int odd_spreg; /* Does the object require odd_spreg support? */ + ElfW (Addr) plt; /* Address of .plt. */ + ElfW (Word) fpabi; /* FP ABI of the object. */ + unsigned int odd_spreg; /* Odd single-precision registers used? */ };