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
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
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
ck to the application.
>
> Cheers,
>
> Dave.
> --
> Dave Chinner
Yes.
--
Thanks,
Steve
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
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
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)
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
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
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
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
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
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
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
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
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
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
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
output, hence it is the server.
Steve Brown
sbro...@umbc.edu
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 :
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.
>>
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
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
, just to be sure he sees
this.
Cheers,
Ken
-----
Steve Schow
st...@bstage.com
206-724-8083
be... some
would say computers are "possessed" and have a mind of their own, but
that's another story).
Steve Brown
sbro...@umbc.edu
nouns
for these actions? Granted, Wine tries to be bug-for-bug compatible,
but.. huh?
Steve Brown
sbro...@umbc.edu
l into that
doesn't include those cylinders. Bleah!
Steve Brown
sbro...@umbc.edu
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
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
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
your .dll gets
rebuilt, it gets automagically copied as needed.
Steve Brown
[EMAIL PROTECTED]
barely usable on its intended platform (wouldn't even get close to
silver without "cracks").
Steve Brown
[EMAIL PROTECTED]
they were running a fully licensed version just to let us
know about real issues.
Steve Brown
[EMAIL PROTECTED]
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
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: '
: '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]
m pointing to them from the Windows expected locations?
Steve Brown
[EMAIL PROTECTED]
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
38 matches
Mail list logo