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=-9.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,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 EBA07C43461 for ; Tue, 8 Sep 2020 18:35:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B0FF92098B for ; Tue, 8 Sep 2020 18:35:38 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="FBZeSNV4" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731368AbgIHSfh (ORCPT ); Tue, 8 Sep 2020 14:35:37 -0400 Received: from us-smtp-1.mimecast.com ([207.211.31.81]:51033 "EHLO us-smtp-delivery-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1731561AbgIHSf3 (ORCPT ); Tue, 8 Sep 2020 14:35:29 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1599590128; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=Fv6gc7xhcdij2MKCbLF80ijHtpETi3w0Dc0YpgtmLiw=; b=FBZeSNV4iCYWQSemBFeBxWUkvc5t+251j6sHtkpRim+LWaPo6IwuksHBpFJJZKAcAkMz6x Xh3CsUvPElBUWvvjSnY39G10EvSkW88OP3tVM4UhrdhcydneEXNQ4U/p9QgN2dV3vgrb63 jujrindNzADkD4/inPizrwU7u15iarQ= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-501-vLVa0lTfNIu8NPK8CYfOOA-1; Tue, 08 Sep 2020 14:35:25 -0400 X-MC-Unique: vLVa0lTfNIu8NPK8CYfOOA-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id EA818393B1; Tue, 8 Sep 2020 18:35:24 +0000 (UTC) Received: from bfoster (ovpn-113-130.rdu2.redhat.com [10.10.113.130]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7A09B5D9E8; Tue, 8 Sep 2020 18:35:24 +0000 (UTC) Date: Tue, 8 Sep 2020 14:35:22 -0400 From: Brian Foster To: Zorro Lang Cc: fstests@vger.kernel.org, io-uring@vger.kernel.org Subject: Re: [PATCH v4 3/5] fsstress: fix memory leak in do_aio_rw Message-ID: <20200908183522.GC737175@bfoster> References: <20200906175513.17595-1-zlang@redhat.com> <20200906175513.17595-4-zlang@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200906175513.17595-4-zlang@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org On Mon, Sep 07, 2020 at 01:55:11AM +0800, Zorro Lang wrote: > If io_submit or io_getevents fails, the do_aio_rw() won't free the > "buf" and cause memory leak. > > Signed-off-by: Zorro Lang > --- > ltp/fsstress.c | 39 +++++++++++++++++++-------------------- > 1 file changed, 19 insertions(+), 20 deletions(-) > > diff --git a/ltp/fsstress.c b/ltp/fsstress.c > index b4a51376..c0e587a3 100644 > --- a/ltp/fsstress.c > +++ b/ltp/fsstress.c ... > @@ -2166,27 +2166,26 @@ do_aio_rw(int opno, long r, int flags) > if (v) > printf("%d/%d: %s - io_submit failed %d\n", > procid, opno, iswrite ? "awrite" : "aread", e); > - free_pathname(&f); > - close(fd); > - return; > + goto aio_out; > } > if ((e = io_getevents(io_ctx, 1, 1, &event, NULL)) != 1) { > if (v) > printf("%d/%d: %s - io_getevents failed %d\n", > procid, opno, iswrite ? "awrite" : "aread", e); > - free_pathname(&f); > - close(fd); > - return; > + goto aio_out; > } > > e = event.res != len ? event.res2 : 0; > - free(buf); > if (v) > printf("%d/%d: %s %s%s [%lld,%d] %d\n", > procid, opno, iswrite ? "awrite" : "aread", > f.path, st, (long long)off, (int)len, e); > + aio_out: > + if (buf) > + free(buf); > + if (fd > 0) > + close(fd); Same nit here as patch 1. Otherwise LGTM: Reviewed-by: Brian Foster > free_pathname(&f); > - close(fd); > } > #endif > > -- > 2.20.1 >