Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755888AbdIGSvx (ORCPT ); Thu, 7 Sep 2017 14:51:53 -0400 Received: from mail-pf0-f194.google.com ([209.85.192.194]:36425 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752538AbdIGSvu (ORCPT ); Thu, 7 Sep 2017 14:51:50 -0400 X-Google-Smtp-Source: ADKCNb6+Nhu5dNvAblczPiOeRLYMcXNEvZhmefLKrZBjzF+Cxl/Y8rv9n5HShghkjbUoNFsAbjwIOg== Date: Thu, 7 Sep 2017 11:51:47 -0700 From: Eric Biggers To: Gustavo Padovan Cc: linux-media@vger.kernel.org, Hans Verkuil , Mauro Carvalho Chehab , Shuah Khan , linux-kernel@vger.kernel.org, Gustavo Padovan , Alexander Viro , linux-fsdevel@vger.kernel.org, Riley Andrews Subject: Re: [PATCH v3 14/15] fs/files: export close_fd() symbol Message-ID: <20170907185147.GB92996@gmail.com> References: <20170907184226.27482-1-gustavo@padovan.org> <20170907184226.27482-15-gustavo@padovan.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170907184226.27482-15-gustavo@padovan.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 987 Lines: 22 On Thu, Sep 07, 2017 at 03:42:25PM -0300, Gustavo Padovan wrote: > From: Gustavo Padovan > > Rename __close_fd() to close_fd() and export it to be able close files > in modules using file descriptors. > > The usecase that motivates this change happens in V4L2 where we send > events to userspace with a fd that has file installed in it. But if for > some reason we have to cancel the video stream we need to close the files > that haven't been shared with userspace yet. Thus the export of > close_fd() becomes necessary. > > fd_install() happens when we call an ioctl to queue a buffer, but we only > share the fd with userspace later, and that may happen in a kernel thread > instead. What do you mean? A file descriptor is shared with userspace as soon as it's installed in the fdtable by fd_install(). As soon as it's there, another thread can use it (or close it, duplicate it, etc.), even before the syscall that installed it returns... Eric