Module Name:src
Committed By: christos
Date: Sun Aug 30 21:12:45 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: Makefile
Log Message:
include bsd.init.mk to avoid:
make: Bad conditional expression ` != "no"' in != "no"? -DINET6 :
To generate a diff of this commit
Module Name:src
Committed By: uwe
Date: Fri Jun 19 01:19:51 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: Makefile
Log Message:
Use ?:: modifier instead of .if to check for ipv6.
This way we don't have to include bsd.init.mk early.
To generate a diff of this comm
Module Name:src
Committed By: uwe
Date: Sun Jun 14 00:30:20 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: mount_9p.8 ninepuffs.c
Log Message:
Support optional square brackets around the host name.
The brackets are required when using numeric IPv6 addresses as they
Module Name:src
Committed By: uwe
Date: Sat Jun 13 21:23:28 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: ninepuffs.c
Log Message:
Remove -46 from the -c usage. While here, sync usage with man page
(s/devfile/device).
To generate a diff of this commit:
cvs rdiff
Module Name:src
Committed By: wiz
Date: Sat Jun 13 16:56:46 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: ninepuffs.c
Log Message:
Add -46 to usage.
To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/usr.sbin/puffs/mount_9p/ninepuffs.c
Please note
Module Name:src
Committed By: uwe
Date: Sat Jun 13 13:45:06 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: Makefile mount_9p.8 ninepuffs.c
Log Message:
Support IPv6.
Use getaddrinfo(3). Add -4 and -6 command line options. Obey USE_INET6.
To generate a diff of t
Module Name:src
Committed By: uwe
Date: Mon Jun 1 13:30:52 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: node.c
Log Message:
Fix extra whitespace added by accident.
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/usr.sbin/puffs/mount_9p/node.c
Module Name:src
Committed By: uwe
Date: Sat May 30 02:53:30 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: ninepuffs.c
Log Message:
Initialize puffs9p::server (though it's not used anywhere).
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/usr.sb
Module Name:src
Committed By: uwe
Date: Sat May 30 00:00:35 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: mount_9p.8
Log Message:
Provide list of options for ease of reference.
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/usr.sbin/puffs/mount
Module Name:src
Committed By: uwe
Date: Fri May 29 23:49:09 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: ninepuffs.c
Log Message:
Fix vio9p device name in a comment.
To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/usr.sbin/puffs/mount_9p/ninepu
Module Name:src
Committed By: uwe
Date: Thu May 28 14:00:05 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: fs.c
Log Message:
Do not send dummy Tauth, it's completely unnecessary.
The best way to not use authentication is to not use authentication.
Cf. http://man.ca
Module Name:src
Committed By: uwe
Date: Wed May 27 03:25:13 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: node.c
Log Message:
puffs9p_node_rename - 9P rename is done with Twstat and can only
change the last pathname component. Return EXDEV for attempts to move
a f
Module Name:src
Committed By: uwe
Date: Wed May 27 00:36:08 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: node.c
Log Message:
noderemove - do not call puffs_setback here. noderemove is called
from rename (for existing target) and calling setback is not
appropriate
Module Name:src
Committed By: uwe
Date: Wed May 27 00:05:22 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: node.c
Log Message:
puffs9p_node_rename - noderename takes puffs_node, not p9pnode, but
this goes undetected b/c pn_data we pass is a pointer to void.
>From N
Module Name:src
Committed By: uwe
Date: Tue May 26 22:54:43 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: ninepuffs.h node.c
Log Message:
Use the typedef to declare tag in AUTOVAR. Do not allocate 9P tags in
advance in AUTOVAR, do it right before we need them. Do
Module Name:src
Committed By: uwe
Date: Tue May 26 22:33:05 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: nineproto.c
Log Message:
Do not allocate 9P tags in advance, do it right before we need them.
If we are going to use sequential tags, we might as well try to m
Module Name:src
Committed By: uwe
Date: Tue May 26 22:08:11 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: node.c
Log Message:
puffs9p_node_lookup - use the right type for tfid.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/usr.sbin/puffs/mount
Module Name:src
Committed By: uwe
Date: Tue May 26 19:41:36 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: nineproto.c
Log Message:
proto_getstat - g/c debug printfs.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/usr.sbin/puffs/mount_9p/ninepro
Module Name:src
Committed By: uwe
Date: Tue May 26 19:38:14 UTC 2020
Modified Files:
src/usr.sbin/puffs/mount_9p: subr.c
Log Message:
getdfwithoffset - do not issue dummy read to seek to offset zero on a
newly opened fid as it's already there. This is redundant and also
s
Module Name:src
Committed By: christos
Date: Sun Nov 4 22:38:19 UTC 2012
Modified Files:
src/usr.sbin/puffs/mount_9p: ninebuf.c
Log Message:
add missing header
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/puffs/mount_9p/ninebuf.c
Please note
20 matches
Mail list logo