Re: mount system call.

2005-11-06 Thread Oron Peled
On Sunday, 6 בNovember 2005 18:29, David Harel wrote: > Can you send me the file mentioned? Are you kidding? Send files? Hop-off to: http://lxr.linux.no/source/include/linux/fs.h#L105 Shorter for everyone... -- Oron Peled Voice/Fax: +972-4-8228492 [EMAIL PROTECTED

Re: mount system call.

2005-11-06 Thread David Harel
Eventually I found that the flags match the constant: MS_MGC_VAL Thank you all for your help. Muli Ben-Yehuda wrote: On Sun, Nov 06, 2005 at 05:16:13PM +0200, David Harel wrote: The problem is I can't find the above flags in any include file. Tried: find /tmp/util-linux-2.12r -type f | xar

Re: mount system call.

2005-11-06 Thread David Harel
strace mount: strace -s64 mount -t vfat -o uid=harel \ /dev/sda1 /mnt/camera 2>/tmp/mount.trace I can see the mount system call: mount("/dev/sda1", "/mnt/camera", "vfat", MS_POSIXACL|MS_ACTIVE|MS_NOUSER|0xec, 0x805ce70) = 0 The problem is I can't find the

Re: mount system call.

2005-11-06 Thread guy keren
-t vfat -o uid=harel \ > /dev/sda1 /mnt/camera 2>/tmp/mount.trace > > I can see the mount system call: > mount("/dev/sda1", "/mnt/camera", "vfat", > MS_POSIXACL|MS_ACTIVE|MS_NOUSER|0xec, 0x805ce70) = 0 > > The problem is I can't find the a

Re: mount system call.

2005-11-06 Thread Muli Ben-Yehuda
On Sun, Nov 06, 2005 at 05:16:13PM +0200, David Harel wrote: > The problem is I can't find the above flags in any include file. > Tried: > > find /tmp/util-linux-2.12r -type f | xargs grep -l MS_POSIXACL > > find /usr/include -name '*.h' | xargs grep -l MS_POSIXACL What is actually happening here

mount system call.

2005-11-06 Thread David Harel
tmp/mount.trace I can see the mount system call: mount("/dev/sda1", "/mnt/camera", "vfat", MS_POSIXACL|MS_ACTIVE|MS_NOUSER|0xec, 0x805ce70) = 0 The problem is I can't find the above flags in any include file. Tried: > find /tmp/util-linux-2.12r -type f | xarg