From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay.sgi.com (relay1.corp.sgi.com [137.38.102.111]) by oss.sgi.com (Postfix) with ESMTP id D006E7F4E for ; Wed, 13 May 2015 17:25:53 -0500 (CDT) Received: from cuda.sgi.com (cuda1.sgi.com [192.48.157.11]) by relay1.corp.sgi.com (Postfix) with ESMTP id B01728F8054 for ; Wed, 13 May 2015 15:25:53 -0700 (PDT) Received: from sandeen.net (sandeen.net [63.231.237.45]) by cuda.sgi.com with ESMTP id YnVQqvr57M9WxqKW for ; Wed, 13 May 2015 15:25:52 -0700 (PDT) Message-ID: <5553CF6D.9080501@sandeen.net> Date: Wed, 13 May 2015 17:25:49 -0500 From: Eric Sandeen MIME-Version: 1.0 Subject: Re: [ANNOUNCE, DISCUSS] xfsprogs: libxfs-4.1-update branch created References: <20150511000508.GD16689@dastard> <5553CCD2.1010906@sandeen.net> In-Reply-To: <5553CCD2.1010906@sandeen.net> List-Id: XFS Filesystem from SGI List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: xfs-bounces@oss.sgi.com Sender: xfs-bounces@oss.sgi.com To: Dave Chinner , xfs@oss.sgi.com On 5/13/15 5:14 PM, Eric Sandeen wrote: > One interesting problem that arises from this is in xfs_format.h: > > /* On-disk XFS extended attribute names */ > #define SGI_ACL_FILE (char *)"SGI_ACL_FILE" > #define SGI_ACL_DEFAULT (char *)"SGI_ACL_DEFAULT" > #define SGI_ACL_FILE_SIZE (sizeof(SGI_ACL_FILE)-1) > #define SGI_ACL_DEFAULT_SIZE (sizeof(SGI_ACL_DEFAULT)-1) > > (aside: why is it unsigned in the kernel but not here?) > > Anyway: that "sizeof" gives us 7, because it's getting the > size of the pointer, not the string literal. Cool eh! > Never mattered in the kernel, because the _SIZE macros aren't > used. > > I'm not actually sure what the cleanest way to fix this is; > casting string literals gets way past my comfort level with > C pedantry; technically if we want an array of unsigned chars, > we probably need: > > unsigned char *SGI_ACL_FILE[] = "SGI_ACL_FILE"; > unsigned char *SGI_ACL_DEFAULT[] = "SGI_ACL_DEFAULT"; Er, drop the * of course ... -Eric _______________________________________________ xfs mailing list xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs