From owner-svn-src-all@freebsd.org Wed Mar 20 22:35:03 2019 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFEF6153AFFF; Wed, 20 Mar 2019 22:35:03 +0000 (UTC) (envelope-from asomers@gmail.com) Received: from mail-lj1-f195.google.com (mail-lj1-f195.google.com [209.85.208.195]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4465284885; Wed, 20 Mar 2019 22:35:03 +0000 (UTC) (envelope-from asomers@gmail.com) Received: by mail-lj1-f195.google.com with SMTP id y6so3675892ljd.12; Wed, 20 Mar 2019 15:35:03 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=u114w1oJ2hqouOTQygtOljKjOXX0EcyZOE49Z3sD2GY=; b=sxvHq9AjNTPaj+xCV3ncjcX8TpKsUClC7kOCBNOhrGbys4ewRFDK/si9soc0ow99sp hxg7JVmmDckFUq2eEwmkdGCjN2Kpuc/JnJZU2wkQTiNF1R8Wopmemt1mA1iRSlEIU8dv u85PVy7hypC58gLm4DfvaCeS080W2WOIlkITEIdFkwDaAgYfgAijWIGaqmXbgJ/J1Xyd IP3sTvDYjav3F35Klqfh47YNnMzvBcybfbL0x4ccLlnghWlSuNVN0W0mnV2j4II3YovQ jDoNHizZljkCwpAvE3TTO5GPDJWRu8x+FOEBVHXCHFv4SajIdJ0oKnEjIESR6MsTSP77 fKpQ== X-Gm-Message-State: APjAAAWYIrrh+WrXTvraGtHaF4c28ZNVN8jom9sKbKK+IdWs14myS7Mf xPVitPKcgxrqFneLU1yYrEpD8qeTia3AlNymRAmES13I X-Google-Smtp-Source: APXvYqw0J2eCg1/Ejb2gM3PAog431+q5n4HF63ODMPnNc/BDnko3P3qu7Qvt0c+yQEtsP6oknKNjw9NsdduRYfrnVHQ= X-Received: by 2002:a2e:5c7:: with SMTP id 190mr233786ljf.108.1553120830463; Wed, 20 Mar 2019 15:27:10 -0700 (PDT) MIME-Version: 1.0 References: <201903202148.x2KLmiJr059285@repo.freebsd.org> <605f0e65-3683-7a48-8ef2-fce3eda00449@FreeBSD.org> In-Reply-To: <605f0e65-3683-7a48-8ef2-fce3eda00449@FreeBSD.org> From: Alan Somers Date: Wed, 20 Mar 2019 16:26:59 -0600 Message-ID: Subject: Re: svn commit: r345350 - in head: . lib/libjail sbin/mount_fusefs sys/conf sys/fs/fuse sys/modules sys/modules/fuse sys/modules/fusefs To: Pedro Giffuni Cc: src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 4465284885 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.96 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2019 22:35:04 -0000 On Wed, Mar 20, 2019 at 4:23 PM Pedro Giffuni wrote: > > > On 20/03/2019 16:48, Alan Somers wrote: > > Author: asomers > > Date: Wed Mar 20 21:48:43 2019 > > New Revision: 345350 > > URL: https://svnweb.freebsd.org/changeset/base/345350 > > > > Log: > > Rename fuse(4) to fusefs(4) > > > > This makes it more consistent with other filesystems, which all end in "fs", > > and more consistent with its mount helper, which is already named > > "mount_fusefs". > > > > Reviewed by: cem, rgrimes > > MFC after: 2 weeks > > Sponsored by: The FreeBSD Foundation > > Differential Revision: https://reviews.freebsd.org/D19649 > > > > Added: > > head/sys/modules/fusefs/ > > - copied from r345349, head/sys/modules/fuse/ > > Deleted: > > head/sys/modules/fuse/ > > Modified: > > head/UPDATING > > head/lib/libjail/jail.c > > head/sbin/mount_fusefs/mount_fusefs.c > > head/sys/conf/NOTES > > head/sys/conf/files > > head/sys/conf/options > > head/sys/fs/fuse/fuse.h > > head/sys/fs/fuse/fuse_file.c > > head/sys/fs/fuse/fuse_ipc.c > > head/sys/fs/fuse/fuse_main.c > > head/sys/fs/fuse/fuse_node.c > > head/sys/fs/fuse/fuse_vfsops.c > > head/sys/fs/fuse/fuse_vnops.c > > head/sys/modules/Makefile > > head/sys/modules/fusefs/Makefile > > > Hmm.. > > Not that it matters but you renamed the module, shouldn't you rename the > directory as well? > > We have sys/fs/{deadfs|devfs|ext2fs|fdescfs|fifofs|msdosfs| ... etcfs}. > > Cheers, > > Pedro. Technically it's not a requirement for the build, and my other reviewer requested that I don't just to reduce repo churn. -Alan