From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752281Ab2HUEsF (ORCPT ); Tue, 21 Aug 2012 00:48:05 -0400 Received: from mail-ob0-f174.google.com ([209.85.214.174]:43618 "EHLO mail-ob0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751514Ab2HUEsB (ORCPT ); Tue, 21 Aug 2012 00:48:01 -0400 Date: Mon, 20 Aug 2012 21:47:15 -0700 (PDT) From: Hugh Dickins X-X-Sender: hugh@eggly.anvils To: Aristeu Rozanski cc: Tejun Heo , linux-kernel@vger.kernel.org, cgroups@vger.kernel.org, Li Zefan , Hillf Danton , Lennart Poettering Subject: Re: [PATCH v6 1/4] xattr: extract simple_xattr code from tmpfs In-Reply-To: <20120820190039.GR25353@redhat.com> Message-ID: References: <20120816174453.154143248@napanee.usersys.redhat.com> <20120816174453.507922179@napanee.usersys.redhat.com> <20120816195831.GF24861@google.com> <20120820190039.GR25353@redhat.com> User-Agent: Alpine 2.00 (LSU 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 20 Aug 2012, Aristeu Rozanski wrote: > On Mon, Aug 20, 2012 at 12:10:09AM -0700, Hugh Dickins wrote: > > Yes, it looks nice to me. I might have preferred more as inlines in > > the header file to lower the slight init/evict overhead, and I don't > > see why __simple_xattr_set() isn't using simple_xattr_alloc() in the > > same way that shmem_xattr_set() used shmem_xattr_alloc(). But none > > of that matters: > > > > Acked-by: Hugh Dickins > > I can submit additional patches to fix these. What functions you want > inlined? Oh, thank you. I was thinking that it's uncommon for tmpfs files to have xattrs (and the same probably true of other filesystems), so it's best to minimize xattrs impact on shared paths. If simple_xattrs_init() and simple_xattrs_free() can be static inline functions in linux/xattr.h, that would be nice. Probably more important would be to remove spin_lock() and spin_unlock() (and INIT_LIST_HEAD) from simple_xattrs_free() - those are unnecessary in shmem_evict_inode(), and wouldn't they be unnecessary whenever simple_xattrs_free() gets called? Hugh > > On why __simple_xattr_set() is not using simple_xattr_alloc(), there's > no reason to be that way, I missed it. > > Thanks for reviewing! > > -- > Aristeu > >