From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.6.0.0/16 X-Spam-Status: No, score=-3.8 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI, SPF_HELO_NONE,SPF_PASS,T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by dcvr.yhbt.net (Postfix) with ESMTP id E9E231F54E for ; Fri, 19 Aug 2022 18:03:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1349714AbiHSSCZ (ORCPT ); Fri, 19 Aug 2022 14:02:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55510 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1350378AbiHSSBM (ORCPT ); Fri, 19 Aug 2022 14:01:12 -0400 Received: from mail-yw1-f172.google.com (mail-yw1-f172.google.com [209.85.128.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0897B20BD3 for ; Fri, 19 Aug 2022 10:48:24 -0700 (PDT) Received: by mail-yw1-f172.google.com with SMTP id 00721157ae682-3375488624aso111335497b3.3 for ; Fri, 19 Aug 2022 10:48:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc; bh=dOJ1yf7ucG9itHK3D7xAnemDeXCPWNIiNgy4KiOVkkg=; b=rWdP6aREQtf6CkAUgp3z5HvddQgvpab2dDGZKPPfoYxjhaY7AiQvG/SHSRNOvbfVp9 mJGW5RPonCmMmFC7iXjFcbc8p5oIeGeNToGC6ycIQ2qq5DZwn6s6a1GkXIeUa6ItnVmx tHWIXnppS5GdQbDgLDpMQO67KDAcSfzY0v76HVL03949HGdcZzptoVvycYB6SJB5Hlwv w0nCTk2B+faixux2hjQz3OhD8JmYz1KMx7es0Kxs9U+RNVSlJOT4ZM82SvwgYbM1sCX7 d4sCpQMC80q9EwvkfM1XpHXfyXU89feI1LP0kPC3QqkpnrC3d+TGRYYSWMCrDPszSBq0 Hpeg== X-Gm-Message-State: ACgBeo0jhmiiXEK908GcaF0diIiiSnGSde3v3mbPN4BtUjpTDtyeyhSU vhuJtKRjIBIK6Hnr9o1uFQPaujGxhcrr4nA8SZNM/Eqnc+E= X-Google-Smtp-Source: AA6agR6I/RW2W8WMfIQ95njESqrSNiDIyAw6zb1jL3f++D0DBPxGryjjHPbBpzDgf38z5gbeIf26Wg9BnTkZvhyZee8= X-Received: by 2002:a25:fe07:0:b0:691:d1f4:681f with SMTP id k7-20020a25fe07000000b00691d1f4681fmr8835032ybe.211.1660931303652; Fri, 19 Aug 2022 10:48:23 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Eric Sunshine Date: Fri, 19 Aug 2022 13:48:12 -0400 Message-ID: Subject: Re: [PATCH] fsmonitor: option to allow fsmonitor to run against network-mounted repos To: Eric DeCosta via GitGitGadget Cc: Git List , Eric DeCosta Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Thu, Aug 18, 2022 at 5:00 PM Eric DeCosta via GitGitGadget wrote: > Though perhaps not common, there are uses cases where users have large, s/uses cases/use cases/ > network-mounted repos. Having the ability to run fsmonitor against > network paths would benefit those users. > > As a first step towards enabling fsmonitor to work against > network-mounted repos, a configuration option, 'fsmonitor.allowRemote' > was introduced for Windows. Setting this option to true will override > the default behavior (erroring-out) when a network-mounted repo is > detected by fsmonitor. In order for macOS to have parity with Windows, > the same option is now introduced for macOS. > > The the added wrinkle being that the Unix domain socket (UDS) file s/The the/The/ > used for IPC cannot be created in a network location; instead the > temporary directory is used. > > Signed-off-by: Eric DeCosta