From owner-svn-src-all@freebsd.org Wed May 3 23:20:34 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92B4DD569A9; Wed, 3 May 2017 23:20:34 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-qk0-x230.google.com (mail-qk0-x230.google.com [IPv6:2607:f8b0:400d:c09::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FB291865; Wed, 3 May 2017 23:20:34 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by mail-qk0-x230.google.com with SMTP id k74so3837532qke.1; Wed, 03 May 2017 16:20:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=jMgcTLVay/6K4xYNg6UqZfnx+s+UZbmt5EW2heYsOeM=; b=DjyJP5YoGeKN2S/tKVJ4m4e1kOvlz+afcK1Y5sZfNBfgJVQ0gGk8xE97SbDBgbUdrd Bu/92LG1iLOyjxEBCk59ZbO6TVJgVwH47Rq5v+VRsON8f9lYs/FO6JkjCdZIEptRvJQz 1FU9iE252gWXSl+8FUEXDD7MSLoqXxdD4igWEF/9WuCcOKb/LTAyRi8X9Pk9L5qms/Vd oanuGD2If52mGFaMKeyVzTISuKRCjWlcaJv8VgHZvVCF0Mr3uJGbhvROPGajHWG/X9Aq GigdW+109FCVyCW9ijqTHv/edRecUp6WUMi/oXC5zYS/LD3HglEdZeZEwVImY9y8yAvm 58oA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=jMgcTLVay/6K4xYNg6UqZfnx+s+UZbmt5EW2heYsOeM=; b=uBm4VuCc2ohKtbfyr35KCiHEkxnzsrJUru5Jkgzb9zRa9j2xX9NHw6HRYDu3BfcL1k siMHytWaTUOb8/rQ/m8pLi/kemwf7FVLArHb2pLwerYWlj1Yi8YWUETkBKsb3zxI7xn3 G5EWNDSHVLT7eAbqFO6h6X7LsAJtiwCrjRSLpgQE+M8HHBHUln4q9P4BmArMMswo0KIz drUEEeDyFn6KudksdRurnkNqBZVImrjeXc+tlnp8Lwmkhaz9IlkjAqpYT3kwGWtonZJn RBtKOsuWRrT3kJeRl2bNbfPk3TQTgByVKgbKFLnfZ54ClbBOgh3pCOImwfYaQr+7BTcA NIVw== X-Gm-Message-State: AODbwcBPLck8l6ry9puFFfhTF5599RE1MMSZ57aCuvCxzT6FvGGmJDRC 07VYtSgAlZ67RACcFafvFj33WCintZbm X-Received: by 10.55.143.129 with SMTP id r123mr5580895qkd.98.1493853633116; Wed, 03 May 2017 16:20:33 -0700 (PDT) MIME-Version: 1.0 Received: by 10.140.93.83 with HTTP; Wed, 3 May 2017 16:20:32 -0700 (PDT) In-Reply-To: <201705032235.v43MZf1n006000@repo.freebsd.org> References: <201705032235.v43MZf1n006000@repo.freebsd.org> From: Ngie Cooper Date: Wed, 3 May 2017 16:20:32 -0700 Message-ID: Subject: Re: svn commit: r317779 - head/sys/fs/ext2fs To: "Pedro F. Giffuni" Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 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, 03 May 2017 23:20:34 -0000 On Wed, May 3, 2017 at 3:35 PM, Pedro F. Giffuni wrote: > Author: pfg > Date: Wed May 3 22:35:41 2017 > New Revision: 317779 > URL: https://svnweb.freebsd.org/changeset/base/317779 > > Log: > ext2fs: add read-write support for Extended Attributes. > > Extended attributes and their particular implementation in linux are > different from FreeBSD so in this case we have started diverging from > the UFS EA implementation, which would be the natural reference. > > Depending on future progress implementing ACLs this approach may change > but for now bring to the tree an implementation that is consistent and > can be tested. > > Submitted by: Fedor Uporov > > Differential Revision: https://reviews.freebsd.org/D10460 Hi Pedro! It might be a good idea to consolidate variations of extended attributes / [NFSv4] ACLs -- I know that Isilon has an implementation that doesn't exactly match what's present in FreeBSD. Thanks! -Ngie