From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EB0E1C4360C for ; Wed, 25 Sep 2019 16:38:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CCE5B21D7A for ; Wed, 25 Sep 2019 16:38:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2391845AbfIYQig (ORCPT ); Wed, 25 Sep 2019 12:38:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45416 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2391828AbfIYQif (ORCPT ); Wed, 25 Sep 2019 12:38:35 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 7256B85540; Wed, 25 Sep 2019 16:38:35 +0000 (UTC) Received: from thuth.com (ovpn-116-109.ams2.redhat.com [10.36.116.109]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0148060BF1; Wed, 25 Sep 2019 16:38:33 +0000 (UTC) From: Thomas Huth To: kvm@vger.kernel.org, Paolo Bonzini , =?UTF-8?q?Radim=20Kr=C4=8Dm=C3=A1=C5=99?= Cc: David Hildenbrand , Janosch Frank Subject: [kvm-unit-tests PULL 17/17] s390x: Free allocated page in iep test Date: Wed, 25 Sep 2019 18:37:14 +0200 Message-Id: <20190925163714.27519-18-thuth@redhat.com> In-Reply-To: <20190925163714.27519-1-thuth@redhat.com> References: <20190925163714.27519-1-thuth@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Wed, 25 Sep 2019 16:38:35 +0000 (UTC) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org From: Janosch Frank Let's also clean up Signed-off-by: Janosch Frank Message-Id: <20190925135623.9740-3-frankja@linux.ibm.com> Reviewed-by: Thomas Huth Acked-by: David Hildenbrand Signed-off-by: Thomas Huth --- s390x/iep.c | 1 + 1 file changed, 1 insertion(+) diff --git a/s390x/iep.c b/s390x/iep.c index 7da78a3..55c01ee 100644 --- a/s390x/iep.c +++ b/s390x/iep.c @@ -43,6 +43,7 @@ static void test_iep(void) report_prefix_pop(); unprotect_page(iepbuf, PAGE_ENTRY_IEP); ctl_clear_bit(0, 20); + free_page(iepbuf); } int main(void) -- 2.18.1