Re: [PATCH 0/3] Add O_DENY* flags to fcntl and cifs

2012-12-14 Thread Steve French
e for Samba server and NFSv4 to optionally request such behafvior). Also we are likely to see more cases where users want to run Samba over an NFS mount and vice versa. -- Thanks, Steve

Re: [PATCH 0/3] Add O_DENY* flags to fcntl and cifs

2012-12-10 Thread Steve French
On Fri, Dec 7, 2012 at 8:29 AM, Steve French wrote: > although I could not find the same level of detail that MS-FSA > provides (e.g. see section 2.14.10 for the detailed Typo It is section 2.1.4.10 -- Thanks, Steve

Re: [PATCH 0/3] Add O_DENY* flags to fcntl and cifs

2012-12-10 Thread Steve French
ot;these things have Windows > semantics" (where openers of files can lock out others I suspect that WINE would have the same need to ship them to an NFS server as to a Windows server, and the NFS4 protocol specification also defines these, although I could not find the same level of detail that MS-FSA provides (e.g. see section 2.14.10 for the detailed description of how lock conflicts are checked) but the semantics are probably the same. -- Thanks, Steve

Re: [PATCH 0/6] Extended file stat system call

2012-04-28 Thread Steve French
ck to the application. > > Cheers, > > Dave. > -- > Dave Chinner Yes. -- Thanks, Steve

Re: [PATCH 0/6] Extended file stat system call

2012-04-26 Thread Steve French
On Thu, Apr 26, 2012 at 12:09 PM, Steve French wrote: > On Thu, Apr 26, 2012 at 12:06 PM, Myklebust, Trond > wrote: >> On Thu, 2012-04-26 at 12:03 -0500, Steve French wrote: >>> On Thu, Apr 26, 2012 at 12:00 PM, Myklebust, Trond >>> wrote: >>> > On Th

Re: [PATCH 0/6] Extended file stat system call

2012-04-26 Thread Steve French
On Thu, Apr 26, 2012 at 12:06 PM, Myklebust, Trond wrote: > On Thu, 2012-04-26 at 12:03 -0500, Steve French wrote: >> On Thu, Apr 26, 2012 at 12:00 PM, Myklebust, Trond >> wrote: >> > On Thu, 2012-04-26 at 11:56 -0500, Steve French wrote: >> >> On Thu, Apr 26

Re: [PATCH 1/6] xstat: Add a pair of system calls to make extended file stats available

2012-04-26 Thread Steve French
On Thu, Apr 26, 2012 at 9:28 AM, J. Bruce Fields wrote: > On Thu, Apr 26, 2012 at 02:45:54PM +0100, David Howells wrote: >> Steve French wrote: >> >> > I also would prefer that we simply treat the time granularity as part >> > of the superblock (mounted volume)

Re: [PATCH 0/6] Extended file stat system call

2012-04-26 Thread Steve French
On Thu, Apr 26, 2012 at 12:00 PM, Myklebust, Trond wrote: > On Thu, 2012-04-26 at 11:56 -0500, Steve French wrote: >> On Thu, Apr 26, 2012 at 10:25 AM, Myklebust, Trond >> wrote: >> > On Thu, 2012-04-26 at 09:54 -0500, Steve French wrote: >> >> On Thu, Ap

Re: [PATCH 2/6] xstat: Ext4: Return extended attributes

2012-04-26 Thread Steve French
On Thu, Apr 26, 2012 at 8:47 AM, David Howells wrote: > Steve French wrote: > >> This patch reminds me of a question on time stamps - how can an >> application query the time granularity ie sb_s_time_gran for a mount >> (e.g. 1 second for some file systems, 100 nano

Re: [PATCH 0/6] Extended file stat system call

2012-04-26 Thread Steve French
On Thu, Apr 26, 2012 at 10:25 AM, Myklebust, Trond wrote: > On Thu, 2012-04-26 at 09:54 -0500, Steve French wrote: >> On Thu, Apr 26, 2012 at 9:25 AM, David Howells wrote: >> > Steve French wrote: >> > >> >> Would it be better to make the stable vs vo

Re: [PATCH 0/6] Extended file stat system call

2012-04-26 Thread Steve French
On Thu, Apr 26, 2012 at 9:25 AM, David Howells wrote: > Steve French wrote: > >> Would it be better to make the stable vs volatile inode number an attribute >> of the volume  or something returned by the proposed xstat? > > I'm not sure what you mean by a stable vs a

Re: [PATCH 1/6] xstat: Add a pair of system calls to make extended file stats available

2012-04-24 Thread Steve French
umber of uses: >> >>  (1) Creation time: The SMB protocol carries the creation time, which could >> be >>      exported by Samba, which will in turn help CIFS make use of FS-Cache as >>      that can be used for coherency data. >> >>      This is als

Re: [PATCH 0/6] Extended file stat system call

2012-04-20 Thread Steve French
r for offline files (HSM), would XSTAT_INFO_OFFLINE be intended for the case where the network session to the server is disconnected (and in which you case the application does not want to reconnect)? -- Thanks, Steve

Re: [PATCH 2/6] xstat: Ext4: Return extended attributes

2012-04-20 Thread Steve French
ttr        = ext4_setattr, > +       .getattr        = ext4_getattr, >  #ifdef CONFIG_EXT4_FS_XATTR >        .setxattr       = generic_setxattr, >        .getxattr       = generic_getxattr, > @@ -47,6 +48,7 @@ const struct inode_operations > ext4_fast_symlink_inode_operations = { >        .readlink       = generic_readlink, >        .follow_link    = ext4_follow_link, >        .setattr        = ext4_setattr, > +       .getattr        = ext4_getattr, >  #ifdef CONFIG_EXT4_FS_XATTR >        .setxattr       = generic_setxattr, >        .getxattr       = generic_getxattr, > > -- > To unsubscribe from this list: send the line "unsubscribe linux-cifs" in > the body of a message to majord...@vger.kernel.org > More majordomo info at  http://vger.kernel.org/majordomo-info.html -- Thanks, Steve

Re: [PATCH 5/6] xstat: CIFS: Return extended attributes

2012-04-20 Thread Steve French
ser mount without unix extensions, and the admin > +        * hasn't overridden them, set the ownership to the fsuid/fsgid of the > +        * current process. > +        */ > +       if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER) && > +           !tcon->unix_ext) { > +               if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)) > +                       stat->uid = current_fsuid(); > +               if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)) > +                       stat->gid = current_fsgid(); > +       } > +       if (cifs_i->uid_faked) > +               stat->result_mask &= ~XSTAT_UID; > +       if (cifs_i->gid_faked) > +               stat->result_mask &= ~XSTAT_GID; > + > +       attrs = cifs_i->cifsAttrs; > +       if (attrs & ATTR_HIDDEN)        info |= XSTAT_INFO_HIDDEN; > +       if (attrs & ATTR_SYSTEM)        info |= XSTAT_INFO_SYSTEM; > +       if (attrs & ATTR_ARCHIVE)       info |= XSTAT_INFO_ARCHIVE; > +       if (attrs & ATTR_TEMPORARY)     info |= XSTAT_INFO_TEMPORARY; > +       if (attrs & ATTR_REPARSE)       info |= XSTAT_INFO_REPARSE_POINT; > +       if (attrs & ATTR_OFFLINE)       info |= XSTAT_INFO_OFFLINE; > +       if (attrs & ATTR_ENCRYPTED)     info |= XSTAT_INFO_ENCRYPTED; > +       stat->information |= info; > + > +       if (attrs & ATTR_READONLY)      ioc |= FS_IMMUTABLE_FL; > +       if (attrs & ATTR_COMPRESSED)    ioc |= FS_COMPR_FL; > +       stat->ioc_flags |= ioc; > +       return 0; >  } > >  static int cifs_truncate_page(struct address_space *mapping, loff_t from) > > -- > To unsubscribe from this list: send the line "unsubscribe linux-cifs" in > the body of a message to majord...@vger.kernel.org > More majordomo info at  http://vger.kernel.org/majordomo-info.html -- Thanks, Steve

Re: Killing WineAPI project on SourceForge.

2011-02-05 Thread Steve Brown
n this discussion come and go a few times... Would something like LXR be appropriate for generating a web front-end to searching and indexing the Wine source code? I've used the various Linux kernel sites a time or two: http://sourceforge.net/projects/lxr/ Steve Brown sbro...@umbc.edu

Re: / is writable on mac... leading to lots of awkward msi droppings?

2011-01-05 Thread Steve Brown
seem to be left over from _failed_ installs. As far as permissions to write in the root directory, an installer has to be running with administrator rights to be mucking around in system directories no matter how it gets those rights -- directory permissions, sudo, UACs, whatever. Steve Brown sbro...@umbc.edu

Re: sane.ds: Change "ns" to "ms" in resource files

2010-07-07 Thread Steve Brown
mean microseconds. What does it mean? I couldn't find a definition. Usually, ms is the abbreviation for milliseconds. In an ASCII world, where there isn't a proper Greek_mu character, microseconds gets abbreviated as "us" since a lower-case_u looks like a mu without descender. Steve Brown sbro...@umbc.edu

Re: Intercepting GDI calls

2010-02-15 Thread Steve Brown
output, hence it is the server. Steve Brown sbro...@umbc.edu

Re: Does wine handle virtual midi ports correct on OSX?

2009-05-26 Thread Steve Schow
play well when playing ? Correct duration, correct tempo or other kind of timing issue ? Have you see fixme about MOD_MIDIPORT in log ? Emmanuel Le 25 mai 09 à 17:59, Steve Schow a écrit :

Re: Does wine handle virtual midi ports correct on OSX?

2009-05-26 Thread Steve Schow
ration, correct tempo or other kind of timing issue ? > > Have you see fixme about MOD_MIDIPORT in log ? > > Emmanuel > > Le 25 mai 09 à 17:59, Steve Schow a écrit : > >> >> Thanks for responding. I'm just sending midi notes around, no sysex. >>

Re: Does wine handle virtual midi ports correct on OSX?

2009-05-25 Thread Steve Schow
Thanks for responding. I'm just sending midi notes around, no sysex. Sometimes the ports work and sometimes they don't. I may be finding that the problem is more related to Reaper bugs, I'm not sure yet. Seems like it will not work and then sometimes after a few minutes, it will suddenly start

Re: wine-devel Digest, Vol 46, Issue 55

2009-05-15 Thread Steve Dodier
pointed part-time apprentice of the guru Scott Ritchie :p -- Steve Dodier OpenPGP : 0E5E4ECB IRC : SiDi on irc.freenode.net Jabber : s...@im.apinc.org steve.dod...@gmail.com https://launchpad.net/~sidi

Re: Does wine handle virtual midi ports correct on OSX?

2009-05-08 Thread Steve Schow
, just to be sure he sees this. Cheers, Ken ----- Steve Schow st...@bstage.com 206-724-8083

Re: Romanian translation

2009-04-27 Thread Steve Brown
be... some would say computers are "possessed" and have a mind of their own, but that's another story). Steve Brown sbro...@umbc.edu

Re: Romanian translation

2009-04-27 Thread Steve Brown
nouns for these actions? Granted, Wine tries to be bug-for-bug compatible, but.. huh? Steve Brown sbro...@umbc.edu

Re: [PATCH] [RFC] Make drive C always a "Local disk"

2009-03-08 Thread Steve Brown
l into that doesn't include those cylinders. Bleah! Steve Brown sbro...@umbc.edu

Re: ntdll: add a warning about running wine as root (resend)

2009-02-11 Thread Steve Brown
sudo, the non-root users are allowed to execute a (possibly limited) number of commands with root privileges, but authenticating using their OWN password. Steve Brown sbro...@umbc.edu

Re: ntdll: add a warning about running wine as root (resend)

2009-02-09 Thread Steve Brown
due to permissions > problems. > > The solution: > > sudo rm -rf .wine Wouldn't a better solution be `sudo chown -r me:me .wine` ? Steve Brown sbro...@umbc.edu

Re: Better user feedback and better user experience (idea)

2008-12-18 Thread Steve Brown
et. In a few years, the API will be no more completely implemented than it is today -- it will just be a different set of calls that aren't done than it is today. Steve Brown sbro...@umbc.edu

Re: find_dll_file ignoring WINEDLLPATH?

2008-03-30 Thread Steve Brown
your .dll gets rebuilt, it gets automagically copied as needed. Steve Brown [EMAIL PROTECTED]

Re: WineHQ should discourage the use of cracks

2008-03-04 Thread Steve Brown
barely usable on its intended platform (wouldn't even get close to silver without "cracks"). Steve Brown [EMAIL PROTECTED]

Re: WineHQ should discourage the use of cracks

2008-03-04 Thread Steve Brown
they were running a fully licensed version just to let us know about real issues. Steve Brown [EMAIL PROTECTED]

Re: Request for patch removal

2008-01-16 Thread Steve Brown
iple login users on a local machine at different times would be sufficient for a lot of us. If, say, ~/.wine was used as a replacement for HKLM\Current User and, say, /usr/local/wine/whatever was for the other registry hives and group policies, I think wine would be a lot closer to being a solu

Re: IntelMac compile error

2007-10-21 Thread Steve Brown
On Sun, 21 Oct 2007, Hans Leidekker wrote: > On Sunday 21 October 2007 18:57:10 Steve Brown wrote: > >> mach.c:210: error: parse error before 'state' >> mach.c:211: error: 'state' undeclared (first use in this function) >> mach.c:245: error: '

IntelMac compile error

2007-10-21 Thread Steve Brown
: 'x86_DEBUG_STATE32' undeclared (first use in this function) make[1]: *** [mach.o] Error 1 make: *** [server] Error 2 I stared briefly at the code, and didn't see anything obvious -- also a quick grep through the source directories and the XCode Headers didn't find a header file that included "x86_debug" (case insensitive grep). Ideas? Steve Brown [EMAIL PROTECTED]

Re: Liberation

2007-06-15 Thread Steve Brown
m pointing to them from the Windows expected locations? Steve Brown [EMAIL PROTECTED]

Our next dates are.......

2003-10-11 Thread Steve
During the last 11 years we have been successfully presenting our training seminars in the UK. We have now decided to let the rest of the world have a chance! Listed here are the 3 seminars that we will be presenting in various locations around the world between now and March 2004. For further in