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=-2.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,USER_AGENT_MUTT 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 5BC8AC282C2 for ; Thu, 7 Feb 2019 16:30:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3001A2175B for ; Thu, 7 Feb 2019 16:30:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726510AbfBGQau (ORCPT ); Thu, 7 Feb 2019 11:30:50 -0500 Received: from zeniv.linux.org.uk ([195.92.253.2]:38614 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726171AbfBGQau (ORCPT ); Thu, 7 Feb 2019 11:30:50 -0500 Received: from viro by ZenIV.linux.org.uk with local (Exim 4.91 #2 (Red Hat Linux)) id 1grmZb-0001GW-QT; Thu, 07 Feb 2019 16:30:47 +0000 Date: Thu, 7 Feb 2019 16:30:47 +0000 From: Al Viro To: Jens Axboe Cc: Jann Horn , linux-aio@kvack.org, linux-block@vger.kernel.org, Linux API , hch@lst.de, jmoyer@redhat.com, avi@scylladb.com, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH 13/18] io_uring: add file set registration Message-ID: <20190207163047.GE2217@ZenIV.linux.org.uk> References: <20190204025612.GR2217@ZenIV.linux.org.uk> <785c6db4-095e-65b0-ded5-72b41af5174e@kernel.dk> <2b2137ed-8107-f7b6-f0ca-202dcfb87c97@kernel.dk> <40b27e78-9ee8-1395-feb3-a73aac87c9a7@kernel.dk> <0d2e5085-32ff-e86e-d628-6000071fd132@kernel.dk> <20190206010104.GV2217@ZenIV.linux.org.uk> <608c1102-5818-e38c-cfc7-b1cec5a1ecb4@kernel.dk> <20190207040547.GX2217@ZenIV.linux.org.uk> <51f167c6-aacc-dd5b-4481-7168c6f8b413@kernel.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51f167c6-aacc-dd5b-4481-7168c6f8b413@kernel.dk> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On Thu, Feb 07, 2019 at 09:14:41AM -0700, Jens Axboe wrote: > I created a small app to do just that, and ran it and verified that > ->release() is called and the io_uring is released as expected. This > is run on the current -git branch, which has a socket backing for > the io_uring fd itself, but not for the registered files. > > What am I missing here? Attaching the program as a reference. > int main(int argc, char *argv[]) > { > int sp[2], pid, ring_fd, ret; > > if (socketpair(AF_UNIX, SOCK_DGRAM, 0, sp) != 0) { > perror("Failed to create Unix-domain socket pair\n"); > return 1; > } > > ring_fd = get_ring_fd(); > if (ring_fd < 0) > return 1; > > ret = io_uring_register_files(ring_fd, sp[0], sp[1]); > if (ret < 0) { > perror("register files"); > return 1; > } > > pid = fork(); > if (pid) { > printf("Sending fd %d\n", ring_fd); > > send_fd(sp[0], ring_fd); > } else { > int fd; > > fd = recv_fd(sp[1]); Well, yes - once you receive it, you obviously have no references sitting in SCM_RIGHTS anymore. Get rid of recv_fd() there (along with fork(), while we are at it - what's it for?) and just do send_fd + these 3 close (or just exit, for that matter).