From patchwork Fri Feb 15 02:57:25 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Elliott, Robert (Servers)" X-Patchwork-Id: 10814137 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5E8D313BF for ; Fri, 15 Feb 2019 02:52:12 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4DCAF2F450 for ; Fri, 15 Feb 2019 02:52:12 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 41E792F46B; Fri, 15 Feb 2019 02:52:12 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id EF5C42F450 for ; Fri, 15 Feb 2019 02:52:11 +0000 (UTC) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id B9E81208AE355; Thu, 14 Feb 2019 18:52:11 -0800 (PST) X-Original-To: linux-nvdimm@lists.01.org Delivered-To: linux-nvdimm@lists.01.org Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=148.163.147.86; helo=mx0a-002e3701.pphosted.com; envelope-from=elliott@hpe.com; receiver=linux-nvdimm@lists.01.org Received: from mx0a-002e3701.pphosted.com (mx0a-002e3701.pphosted.com [148.163.147.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 463BB208AE349 for ; Thu, 14 Feb 2019 18:52:10 -0800 (PST) Received: from pps.filterd (m0134422.ppops.net [127.0.0.1]) by mx0b-002e3701.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x1F2pONu027772 for ; Fri, 15 Feb 2019 02:52:09 GMT Received: from g9t5009.houston.hpe.com (g9t5009.houston.hpe.com [15.241.48.73]) by mx0b-002e3701.pphosted.com with ESMTP id 2qngjj1tbb-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Fri, 15 Feb 2019 02:52:09 +0000 Received: from g9t2301.houston.hpecorp.net (g9t2301.houston.hpecorp.net [16.220.97.129]) by g9t5009.houston.hpe.com (Postfix) with ESMTP id 8B4B46B for ; Fri, 15 Feb 2019 02:52:08 +0000 (UTC) Received: from s17.americas.hpqcorp.net (s17.americas.hpqcorp.net [16.84.26.56]) by g9t2301.houston.hpecorp.net (Postfix) with ESMTP id 60DEF4D; Fri, 15 Feb 2019 02:52:08 +0000 (UTC) From: Robert Elliott To: linux-nvdimm@lists.01.org Subject: [ndctl PATCH v2 3/3] ndctl, test: Make tests using MAP_SYNC only include Date: Thu, 14 Feb 2019 20:57:25 -0600 Message-Id: <20190215025725.19366-3-elliott@hpe.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190215025725.19366-1-elliott@hpe.com> References: <20190214163422.15221-1-elliott@hpe.com> <20190215025725.19366-1-elliott@hpe.com> MIME-Version: 1.0 X-HPE-SCL: -1 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-02-15_01:, , signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=1 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 lowpriorityscore=0 mlxscore=0 impostorscore=0 mlxlogscore=530 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1810050000 definitions=main-1902150018 X-BeenThere: linux-nvdimm@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Linux-nvdimm developer list." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linux-nvdimm-bounces@lists.01.org Sender: "Linux-nvdimm" X-Virus-Scanned: ClamAV using ClamSMTP The kernel-4.15 mmap() manpage defines that MAP_SHARED_VALIDATE and MAP_SYNC are provided to applications by . This requires glibc-2.28 and architecture support. Although they are also available via , that is not the defined API. Make tests using it (currently only dax-poison) rely on by removing inclusion of . Fixes: e6a1d12d4a6e2 ("ndctl: autoconf detect BUS_MCEERR_AR") Signed-off-by: Robert Elliott --- test/dax-poison.c | 1 - 1 file changed, 1 deletion(-) diff --git a/test/dax-poison.c b/test/dax-poison.c index a25bf0b..69bb161 100644 --- a/test/dax-poison.c +++ b/test/dax-poison.c @@ -5,7 +5,6 @@ #include #include #include -#include #include #include #include