search for: write2

Displaying 5 results from an estimated 5 matches for "write2".

Did you mean: write
2005 Mar 08
2
I would like to create a Samba share supporting named writers, named readers, and no guests ...
...hat I want. If someone can give me a hint, I would really appreciate it. Thank you. If I do this, reader1 can see the files (good), cannot create files (good), but can modify (write) existing files (bad!) ------- smb.conf ------- [native6-stuff] path = /native6-stuff valid users = write1 write2 write3 reader1 guest ok = no read-list = reader1 write-list write1 write2 write3 force group = writers public = no writable = yes printable = no create mask = 0664 directory mask = 0664 ----------- /etc/group ------------ writers:x:598:write1,write2,write3 -------- end -...
2007 Nov 12
2
Bug#447153: /usr/bin/scp: Fails to notice write errors
...if (close(fd) < 0) { perror("close"); return 1; } return 0; } No error, but you end up with a one-byte hole rather than either (a) "x" or (b) an error. If you leave out the ftruncate, then close returns ENOSPC. In either case, you get "CIFS VFS: Write2 ret -28, written = 0" in syslog, but the error code doesn't make it to userspace if there's an ftruncate between write and close. Is this a CIFS bug? I can't find anything in the ftruncate documentation that suggests it is allowed to do this; I think that if write claims to have wr...
2017 Jan 26
1
Re: [nbdkit PATCH 2/5] protocol: Validate request flags
On 01/26/2017 04:18 AM, Richard W.M. Jones wrote: > On Wed, Jan 25, 2017 at 08:55:18PM -0600, Eric Blake wrote: >> On 01/20/2017 02:16 PM, Eric Blake wrote: >>> Reject rather than silently ignoring unknown client request flags. >>> >> >>> >>> + /* Validate flags */ >>> + if (flags & ~NBD_CMD_FLAG_FUA) { >>> +
2018 Nov 19
2
Per-write cycle count with ReadAdvance - Do I really need that?
It does not work. I have tried to use the latest master today. But tblgen still give me information like error: Resources are defined for both SchedRead and its alias on processor MyArchModel def : ReadAdvance<MyReadVector, 3, [MyWriteAddVector]>; ^ Unless I change "MyReadVector" to another read like "MyReadVector1", it would not work. Debugging into tblgen, there is
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.