Re: [zfs-discuss] XFS_IOC_FSGETXATTR & XFS_IOC_RESVSP64 like

2007-10-12 Thread Anton B. Rang
openat() isn't really what he wants. These aren't user-level xattrs, they're ones which affect the file system, or more specifically, a particular file. I don't think the particular xattrs in question (or analogous ones) exist for ZFS at this point. This message posted from opensolaris.org _

Re: [zfs-discuss] XFS_IOC_FSGETXATTR & XFS_IOC_RESVSP64 like options in ZFS ?

2007-10-12 Thread Darren J Moffat
Manoj Nayak wrote: > Hi, > > I am using XFS_IOC_FSGETXATTR in ioctl() call on Linux running XFS file > system.I want to use similar thing on Solaris running ZFS file system. See openat(2). -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss

[zfs-discuss] XFS_IOC_FSGETXATTR & XFS_IOC_RESVSP64 like options in ZFS ?

2007-10-12 Thread Manoj Nayak
Hi, I am using XFS_IOC_FSGETXATTR in ioctl() call on Linux running XFS file system.I want to use similar thing on Solaris running ZFS file system. struct fsxattr fsx; ioctl(fd, XFS_IOC_FSGETXATTR, &fsx); The above call get additional attributes associated with files in XFS file systems. The fi