Displaying 2 results from an estimated 2 matches for "smb_st_blksize".
1998 Oct 31
0
Linux 2.1.126 kernel smbfs SMBwrite 2x speed improvement
...Jan Kratochvil
CCed to samba@samba.anu.edu.au list.
-------------- next part --------------
--- /tmp/linux/fs/smbfs/proc.c Mon Oct 26 01:44:37 1998
+++ linux/fs/smbfs/proc.c Sat Oct 31 02:48:31 1998
@@ -25,6 +25,9 @@
#include <asm/string.h>
+#include <asm/page.h>
+#define SMB_ST_BLKSIZE (PAGE_SIZE)
+
#define SMBFS_PARANOIA 1
/* #define SMBFS_DEBUG_TIMESTAMP 1 */
/* #define SMBFS_DEBUG_VERBOSE 1 */
@@ -1224,7 +1227,7 @@
fattr->f_nlink = 1;
fattr->f_uid = server->mnt->uid;
fattr->f_gid = server->mnt->gid;
- fattr->f_blksize = 512;
+ fattr->f_blksi...
2002 Jul 27
6
mode=777 does not work as fstab option
I need to mount a samba share as mode 777, so all users can
read/write/delete/create.
I have this as fstab entry
//host/public /mnt/home smbfs
auto,uid=user,umask=000,defaults,username=Perkins,password=
see, i've had to put uid=user just to get it owned by user user, so i could
edit files
i put mode=777, but it does nothing.
i want to let all users read/write/create/delete