From patchwork Mon Oct 23 15:55:42 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johannes Wegener X-Patchwork-Id: 829360 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.infradead.org (client-ip=65.50.211.133; helo=bombadil.infradead.org; envelope-from=lede-dev-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="G0eO0qVm"; dkim-atps=neutral Received: from bombadil.infradead.org (bombadil.infradead.org [65.50.211.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yLLbz58GVz9t6F for ; Tue, 24 Oct 2017 02:56:15 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:Subject:MIME-Version:Date:Message-ID:To :From:Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=xizV8hHHWc8QRn84BQTQVhFBwKGowH+L0zwgUUIPsEw=; b=G0eO0qVmrAMAqY G1wAt/ZHKUgCCCU5E5Pse7odI4OOrSCHBAxT31a7sCABltLqLNATeDYYgnKWDRZvz+JuEehdmJfZ8 djiQLuWpPGm4hbugHXEorO26rMZE5iHpbc2qbHf+Bd70u5/Ubyb0mOA6qO0prlbmW6WFMhSv5oTlq hsJ3qO5baUh2+BJoQlK9Cpe/Yivec6w9dopD1/ifslAW5IwZ4fIvLM/GFW8KhJVvBiOnGYToxALml 2gcAnOow7Mc2AMjbh/26tTWMrdwzAFDdVY6X+Pg6DMYd/f3aNNcgakt0pPY/A1Rk0g5VKH2jeierG L7skJvsxit+FkicoHSEg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux)) id 1e6f5K-0004Uj-5E; Mon, 23 Oct 2017 15:56:14 +0000 Received: from cassiopeia.uberspace.de ([95.143.172.115]) by bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat Linux)) id 1e6f5F-0004SB-TS for lede-dev@lists.infradead.org; Mon, 23 Oct 2017 15:56:12 +0000 Received: (qmail 13616 invoked from network); 23 Oct 2017 15:55:43 -0000 Received: from localhost (HELO ?IPv6:2001:638:809:ff1f::8295:dc62?) (127.0.0.1) by cassiopeia.uberspace.de with SMTP; 23 Oct 2017 15:55:43 -0000 From: Johannes Wegener To: lede-dev@lists.infradead.org Message-ID: <846e5a81-3141-049f-8db5-444c1548b2f9@johanneswegener.de> Date: Mon, 23 Oct 2017 17:55:42 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 Content-Language: de-DE X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20171023_085610_333436_C0FF560C X-CRM114-Status: UNSURE ( 7.06 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.4.1 on bombadil.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [95.143.172.115 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Subject: [LEDE-DEV] [PATCH procd] add limits.h because it is needed for INT_MAX X-BeenThere: lede-dev@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "Lede-dev" Errors-To: lede-dev-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org --- trace/trace.c | 1 + 1 file changed, 1 insertion(+) diff --git a/trace/trace.c b/trace/trace.c index 76b6b7f..c471e15 100644 --- a/trace/trace.c +++ b/trace/trace.c @@ -25,6 +25,7 @@ #include #include #include +#include #ifndef PTRACE_EVENT_STOP /* PTRACE_EVENT_STOP is defined in linux/ptrace.h, but this header