Derrick Brashear [Mon, 1 Oct 2001 20:20:04 +0000]
allow-configure-time-override-of-DEST-
20011001
so DEST=foo ./configure will work
Derrick Brashear [Mon, 1 Oct 2001 18:51:41 +0000]
be-more-careful-about-references-when-adding-and-deleting-callbacks-
20011001
perhaps too careful. to fix potential crash in TDel and TAdd
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
remove extra ) which snuck in
Nickolai Zeldovich [Mon, 1 Oct 2001 18:35:50 +0000]
require-administer-permission-for-mount-point-creation-harder-
20010926
make sure a mount point isn't being created if the user isn't allowed to
do that
Mark W. Eichin [Mon, 1 Oct 2001 18:31:49 +0000]
linux24-another-new-inode-field-sigh-
20011001
with configure glue by shadow@dementia.org
one of these days we really need to implement a better solution
Nathan Neulinger [Mon, 1 Oct 2001 18:20:49 +0000]
login-makefile-needs-new-build-system-update-
20011001
fixed missed case of afs/ in libdir
Nathan Neulinger [Mon, 1 Oct 2001 18:19:22 +0000]
pam-build-on-hpux11-
20011001
so pam now builds on hpux 11
Nathan Neulinger [Mon, 1 Oct 2001 18:17:20 +0000]
linux-kdump-wrapper-
20011001
install a kdump wrapper for linux. (with mod to use $0 instead of kdump)
Jeffrey Hutzelman [Mon, 1 Oct 2001 18:11:03 +0000]
fix-destdir-support-for-fsconv-and-xfs-binaries-
20011001
properly support DESTDIR case in vol makefile for certain files which were
broken before
Derrick Brashear [Fri, 28 Sep 2001 14:09:21 +0000]
rx-ignore-vab-harder-
20010928
if the other side suggests we use the vab security class, ignore them
harder than we did before
Derrick Brashear [Thu, 27 Sep 2001 18:37:49 +0000]
afs-lookup-put-back-vcache-entry-on-failed-evalmountpoint-
20010927
based on observations of effects related to
afs-lookup-check-evalmountpoint-return-
20010221 and affirmed based on
mail from Todd_DeSantis@transarc.com
this should reduce but perhaps not eliminate the VLRU cycle: increase
-stat parameter problem on Linux as it's not yet clear that this is the
only problem and circumstantially it is probably not.
Derrick Brashear [Thu, 27 Sep 2001 03:16:36 +0000]
afs-client-inline-bulkstatus-rpc-support-
20010926
this cuts rpc traffic in half for directories on which you have
no permissions and is capable of doing more if a useful way can
be conceived of caching errors.
currently bulkstat works thus:
say a directory has 100 files. bulkstat will on the first hit stat
the first 30 files, integrating the information if successful,
and when you hit file 31, repeat. meaning if you can read that 100 files
is 4 bulkstatus rpcs (3*30+10). if you can't, you do bulkstatus, get an abort,
then do fetchstatus on the file and find out why you lost. you go on and
try bulkstatus again this time for files 2-31 instead of 1-30. same failure,
meaning you do 2N rpcs for the N files. inlinebulk doesn't abort but instead
fills in stat info for any of the up to 30 files it can, and errors for
any it can't.
currently the client will pull out any stat info filled in,
and then return the error from the first file, meaning if you can't
read the directory we do N inlinebulk rpcs instead of N bulkstatus +
N fetchstatus rpcs. if the errors for the other 29 could be meaningfully
cached (and you have to be careful not to pollute information
such that it's not useful for someone in a different auth context) then
we could get down to the same 4 rpcs we have for success, but that's an
exercise for later give how the cache manager works.
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
create audit event for inlinebulk
====================
rename spare2
Jim Rees [Wed, 26 Sep 2001 22:49:33 +0000]
fix-locks-for-openbsd-
20010926
don't confuse direct with dirent
use curproc instead of cur_proc()
Derrick Brashear [Wed, 26 Sep 2001 16:28:22 +0000]
bos-avoid-false-errors-when-salvaging-
20010926
there were some cases where we falsely reported the BZNOENT from salvage-tmp
being cleanup up as "bos: failed to start 'salvager' (no such entity)"..
despite having just reported:
bos: salvage completed
this should no longer happen.
Nickolai Zeldovich [Wed, 26 Sep 2001 01:02:46 +0000]
allow-namei-fileservers-to-use-directories-instead-of-partitions-for-vicep-
20010924
-- /vicepX/AFSIDat/README is created the first time the fileserver
is started, rather than the second time.
-- For the namei fileserver, /vicepa/Lock/vicepa is created as
the lockfile. Previously, on Solaris, the raw device was
was being used for LockPartition(), and that breaks when
there isn't a corresponding device.
-- The VolPartitions and XVolPartitions volserver calls now return
the list of attached (rather than mounted) partitions. This is
consistent with the NT fileserver and removes duplicate code.
The actual magic for allowing the fileserver to attach non-mounted
partitions is to create /vicepX/AlwaysAttach.
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
carefully avoid non vicep directories and/or partitions as it may get upset at
automounters or running cachemanagers!
====================
more carefully avoid non-vicepX partitions
Derrick Brashear [Tue, 25 Sep 2001 16:44:39 +0000]
create-inline-bulkstatus-rpc-and-server-stub-
20010925
this way it's possible to do a bulkstatus where some items succeed and
fill in that stat info, instead of just getting an error.
Derrick Brashear [Mon, 24 Sep 2001 23:19:46 +0000]
fileserver-remove-delay-on-stat-errors-
20010925
previously and since 3.5 rx enhancements fileserver would delay 3 seconds
on sending an rx abort when the abort was the 11th or more occurance of
the same error on the same call. the problem was fetchstatus/bulkstatus
on a directory on which you have "l" but not "r" would take forever after the
first 5 files (bulkstatus and then fetchstatus on each file, 2*5=10)
so in FetchStatus and BulkStatus stubs we suppress repeated errors from
Check_PermissionRights *only*, which has the effect of suppressing the
problem without removing the theoretical benefit of avoiding letting any
one client throw requests at as as fast as we can abort them unless those
requests happen to be fetch/bulkstat requests which fail a permission check,
but in order to avoid that we'd also need to cache what they last tried
to stat, and then things would get ugly.
Derrick Brashear [Mon, 24 Sep 2001 17:11:07 +0000]
comerr-include-proper-old-compat-glue-
20010924
so old initialize function works correctly
Derrick Brashear [Mon, 24 Sep 2001 13:17:16 +0000]
export-vlops-in-vldbint-xg-file-
20010924
based on report from lha@stacken.kth.se
include vlops in the "published" interface
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
based on report from lha@stacken.kth.se
remove from vlserver.p.h
Derrick Brashear [Mon, 24 Sep 2001 11:51:05 +0000]
NEWS-updates-
20010924
update NEWS for stuff in 1.2.1 and stuff to go into 1.2.2
Nickolai Zeldovich [Mon, 24 Sep 2001 11:48:14 +0000]
viced-deal-gracefully-with-afsconf-failure-
20010924
-- Fileserver will complain if afsconf_Open() fails, rather than
mysteriously segfault'ing later on.
Nickolai Zeldovich [Mon, 24 Sep 2001 11:44:32 +0000]
rx-cleanup-
20010924
The rxi_ReceiveAckPacket() change makes sure we have two extra fields
(the max and recommended packet sizes) hanging off the packet, rather
than just one.
The PKTFLAG_FREE stuff in rx_packet.c just initialized flags in case
PKTFLAG_ACKED somehow didn't get cleared there.
The wirevec changes are off-by-1 errors: there's p->niovecs iovecs
in a packet, from 0 (header) to p->niovecs-1, so p->niovecs doesn't
refer to a meaningful iovec.
Mattias Amnefelt [Sat, 22 Sep 2001 00:48:56 +0000]
dux-vfsck-check-for-mounted-filesystem-
20010919
modified by shadow@dementia.org for dux 4.0a (ifndef UID_NO_CHANGE case)
Chaskiel M Grundman [Thu, 20 Sep 2001 21:10:06 +0000]
darwin-optimize-and-fix-dirpath-
20010920
change optimization, add alternate dirpath for dealing with darwin and macos
in same binaries
Derrick Brashear [Thu, 20 Sep 2001 06:08:14 +0000]
undo-linux-call-afs-dopartialwrite-
20010920
scrap this approach
Derrick Brashear [Thu, 20 Sep 2001 04:58:23 +0000]
ubik-fix-typo-
20010919
somehow this crept in
James Peterson [Thu, 20 Sep 2001 00:18:54 +0000]
winnt-dont-do-unneeded-version-check-
20010918
make afs config wizard not complain about version < 3.5
Shyh-Wei Luan [Thu, 20 Sep 2001 00:16:19 +0000]
news-include-windows-updates-
20010918
list windows client user-visible changes
Jim Rees [Wed, 19 Sep 2001 18:59:08 +0000]
openbsd-nits-
20010919
With these small changes, "make" on OpenBSD actually completes!
Jim Rees [Tue, 18 Sep 2001 21:44:02 +0000]
document automake dependency
Derrick Brashear [Tue, 18 Sep 2001 05:26:47 +0000]
comerr-behave-like-the-rest-of-the-world-
20010918
no other comerr changes the case of the error table name you specify in the
.et file. now neither does ours.
Walter Wong [Mon, 17 Sep 2001 22:37:21 +0000]
misc-build-cleanup-
20010917
1) Removal of unused variables
2) some NT ifdef cleanup
3) use of size_t rather than int to store the result of strlen()
4) some bugs that really only occured when errors occured.
5) some functions were implicitly declared as 'int' but doing a
"return;" Some I declared as 'void' and prototyped them; some I
just returned a value.
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
put symbol in an ifndef for winnt
====================
change erroneous void to int
====================
technically the cmdprocs return int
====================
update function to be void
Walter Wong [Mon, 17 Sep 2001 20:35:09 +0000]
nt-makefile-clean-targets-
20010917
more work on providing a clean target for nt
Walter Wong [Mon, 17 Sep 2001 20:26:24 +0000]
readme-cvs-update-with-instructions-
20010917
providedetails about openafs cvs
Sam Hartman [Mon, 17 Sep 2001 19:33:50 +0000]
ppc-linux-needs-install-path-
20010917
set path to install in pcc linux22 makefile fragment
Derrick Brashear [Mon, 17 Sep 2001 19:12:20 +0000]
linux-call-afs-dopartialwrite-from-afs-memwrite-and-afs-ufswrite-not-afs-linux-write-
20010828
don't erroneously call fakeopen
Jim Rees [Fri, 14 Sep 2001 00:19:17 +0000]
Initial OpenBSD support. Most of user space builds. No kernel module yet.
Chaskiel M Grundman [Wed, 12 Sep 2001 06:00:46 +0000]
darwin-update-plist-building-
20010912
update how plist files are constructed so subsconfigure for libafs can work
Derrick Brashear [Wed, 12 Sep 2001 16:55:58 +0000]
linux-makefileproto-redhat-enterprise-support-
20010912
based on work by thomas.mueller@hrz.tu-chemnitz.de
Derrick Brashear [Tue, 11 Sep 2001 21:30:21 +0000]
darwin-plist-renaming-
20010911
allow configure processing of files
Derrick Brashear [Tue, 11 Sep 2001 20:28:56 +0000]
afs-callback-kill-bcopy-again-
20010911
this slipped in with the memory leak fix
Derrick Brashear [Tue, 11 Sep 2001 07:56:23 +0000]
update-top-level-docs-for-new-install-targets-
20010911
make top level files indicate current build instructions
Derrick Brashear [Tue, 11 Sep 2001 07:25:54 +0000]
aix-makefileproto-cleanup-dest-building-
20010911
readd missing /es
Derrick Brashear [Tue, 11 Sep 2001 05:46:37 +0000]
makefileproto-solaris-install-modules-in-modlad-dir-
20010911
get rid of another bogosity
Derrick Brashear [Tue, 11 Sep 2001 05:00:29 +0000]
configure-libafs-fix-paths-
20010910
update paths for building submodule
Derrick Brashear [Tue, 11 Sep 2001 04:30:49 +0000]
irix-makefileproto-fix-dest-target-
20010910
rely on DEST not DESTDIR
also install instead of cp to implicitly create needed directory
Derrick Brashear [Mon, 10 Sep 2001 21:52:30 +0000]
linux-configure-check-for-more-inode-struct-members-
20010910
for redhat enterprise kernel
Derrick Brashear [Mon, 10 Sep 2001 21:50:43 +0000]
update-libafs-configure-
20010910
so the kernel module subconfigure will work usefully
Nathan Neulinger [Mon, 10 Sep 2001 21:21:01 +0000]
makefile-cleanup-remove-extraneous-semicolons-and-other-unused-bits-
20010910
rationalize away some more crap
Nathan Neulinger [Mon, 10 Sep 2001 21:14:01 +0000]
add-cvsignores-to-project-
20010910
start at cvsignores
Walter Wong [Mon, 10 Sep 2001 21:08:14 +0000]
winnt-readme-update-
20010910
update winnt build instructions
Chaskiel M Grundman [Mon, 10 Sep 2001 21:07:32 +0000]
darwin-build-updates-
20010910
separate plist on per-version basis
1.4 is not yet supported
Walter Wong [Mon, 10 Sep 2001 20:54:20 +0000]
winnt-create-missing-clean-target-
20010910
get winnt make clean closer to working
Jeffrey Hutzelman [Mon, 10 Sep 2001 20:15:57 +0000]
make-install-support-for-transarc-and-prefix-style-universes-
20010907
according to jeff:
- Renames the top-level 'install' target to 'build'. This should be
transparent, since no one should be using that.
- Improves on Sam's dirpath patches, by splitting out server binaries
into separate bin, sbin, and libexec directories in GCS mode (these
are all /usr/afs/bin in Transarc mode).
- Updates the top-level 'all' target so that it builds the software
but does not generate a dest tree. Top-level 'lib' and 'include'
directories are generated to hold the intermediate libraries and headers
used during the build.
- Adds a new top-level 'install' target, which installs things in the
appropriate directories under ${DESTDIR}, based on configure's install
directories plus the extras added by Sam's patch.
- Adds a new top-level 'dest' target, which creates an old-style dest
directory under ${DEST}. The ${DEST} variable defaults to the
traditional value of ${SRCDIR_PARENT}/${SYS_NAME}/dest. Note that
this variable used to be called ${DESTDIR}; it was renamed to avoid
conflicts with the de facto standard usage of ${DESTDIR}.
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
fix missed makefile
====================
update another missed file
====================
eliminate bogus escaping
====================
get rid of another bogus escape
====================
remove unused include directory
====================
get rid of no longer used libdir
====================
remove unused incdir
====================
fix up some problems for make compatibility and missing trailing /
====================
put afs.exp in the right place
====================
remove bogus afssrvdir reference
====================
update dest version of output
====================
update ref to libexecdir
====================
kill refs to afssrvdir
====================
convert missed LIBDIR to TOP_LIBDIR
====================
remove explicit INSTALL and use makefile.@sys value instead
====================
except it's helpful to actually include makefile.@sys
====================
convert LIBDIR to TOP_LIBDIR
Derrick Brashear [Mon, 10 Sep 2001 17:37:32 +0000]
bucoord-cvs-bogosity-
20010910
correct bogosity which crept into CVS (rtruct instead of struct)
James Peterson [Mon, 10 Sep 2001 16:39:47 +0000]
windows-install-updates-
20010910
more corrections for windows packaging
Walter Wong [Sat, 8 Sep 2001 05:31:22 +0000]
winnt-makefile-fixes-
20010908
clean up makefile problems which got introduced by other changes
Nickolai Zeldovich [Fri, 7 Sep 2001 21:47:57 +0000]
rx-do-housekeeping-on-packets-with-new-flags-
20010907
keep better track of packet state using flags in packet header indicating
which packets are in acked state and which are free
Nickolai Zeldovich [Fri, 7 Sep 2001 21:12:13 +0000]
afs-callback-plug-small-memory-leaks-
20010907
2 RPC stubs have small memory leaks since the actual string length is being
freed and not the whole allocated chunk
Chaskiel M Grundman [Fri, 7 Sep 2001 19:59:03 +0000]
darwin-make-afsd-script-exit-for-failure-
20010907
script failed to exit for one of the failure cases before
Carsten Jacobi [Fri, 7 Sep 2001 05:36:41 +0000]
pam-afs-new-features-
20010907
add ignore_uid (like ignore_root) plus set_token (set token in auth step instead of setcred), refresh_token (no new pag), use_klog (fork a klog child), no_unlog, remainlifetime (sleep before deleting creds at logout)
Chaskiel M Grundman [Fri, 7 Sep 2001 05:00:05 +0000]
macosx-dont-interfere-with-cd-audio-
20010906
don't use constant VT_AFS for our vfs type
Derrick Brashear [Fri, 7 Sep 2001 04:49:16 +0000]
param-remove-nested-commenting-
20010906
based on comment from rjs3@andrew.cmu.edu
Walter Wong [Fri, 7 Sep 2001 04:38:19 +0000]
winnt-more-makefile-fixes-for-cvs-head-
20010906
take care of some places where we got out of sync between unix and windows,
add media target in afs_setup_utils
Walter Wong [Fri, 7 Sep 2001 04:32:56 +0000]
winnt-initialize-variables-and-memory-before-use-
20010906
initialize a variable false when assumed; also some memset(...,0
Sam Hartman [Fri, 7 Sep 2001 04:18:59 +0000]
dirpath-support-configure-path-options-and-decanonicalization-
20010906
Sam's notes:
"Here is a patch that supports directory paths, documentation for the
above and decanonicalization of of supplied paths. Here are tests I
have run:
* Build with both transarc and non-transarc paths and examined
dirpath.o
* Build with roughly FHS-style paths and tested on Debian
* confirmed that bos salvage works even when salvager not in
/usr/afs/bin
(it gets the log correctly too)
* confirms that bos getlog can get logs from /usr/afs/logs even when
/ur/afs/logs
is /var/lib/openafs/logs
* confirmed that bos getlog can get /etc/motd
"
Derrick Brashear [Fri, 7 Sep 2001 04:05:43 +0000]
afs-sysnames-add-sunx86-57-and-58-
20010906
allocate ids for sunx86 57 and 58
James Peterson [Fri, 7 Sep 2001 03:54:54 +0000]
windows-build-environment-cleanup-
20010906
clean up previous problems in the win2k build env
Derrick Brashear [Fri, 7 Sep 2001 02:12:29 +0000]
linux22-redhat-enterprise-kernels-add-inode-fields-
20010906
struct vm_area_struct *i_mmap_shared;
added in a patch to the redhat enterprise kernel
Chaskiel M Grundman [Thu, 6 Sep 2001 20:07:12 +0000]
linux24-fix-path-leak-
20010906
based on suggestion from Srikanth and Chas Williams
Sam Hartman [Tue, 4 Sep 2001 23:28:20 +0000]
update-top-readme-
20010904
add ppc linux stuff and update alpha linux
Derrick Brashear [Thu, 30 Aug 2001 07:14:37 +0000]
libafs-linux-makefileproto-shouldnt-default-to-kgcc-
20010830
nuke kgcc crock *again*
Derrick Brashear [Thu, 30 Aug 2001 07:07:16 +0000]
config-makefile-further-cleanup-
20010830
ordering of dependancies caused ${DESTDIR}/include/afs to not exist in
time, masked if you built into an existing destdir. so let's make
the makefile simpler and more logically paraallel.
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
get missing backquote
Nathan Neulinger [Thu, 30 Aug 2001 00:22:17 +0000]
more-makefiles-cleanup-
20010829
get rid of cases where we'd end up with two / because of DESTDIR pasting
macroize calls to rm
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
get rid of another case of bogus trailing quoting
Jeffrey Hutzelman [Wed, 29 Aug 2001 23:10:45 +0000]
libafs-make-subtree-during-build-for-later-use-
20010829
get rid of bogus ..'s
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
make the subdir buildable
Derrick Brashear [Wed, 29 Aug 2001 22:31:38 +0000]
libafs-irix-makefile-cleanup-
20010829
clean up typo so we build correct module
Jeffrey Hutzelman [Wed, 29 Aug 2001 20:17:19 +0000]
libafs-make-subtree-during-build-for-later-use-
20010829
at build time, create a subtree for use later which can be used to
build *only* kernel modules, but only for the afs sysname you were building
for in the first place currently.
Derrick Brashear [Wed, 29 Aug 2001 20:04:00 +0000]
linux-support-kernel-patches-used-by-suse-
20010829
check for added fields in struct inode
Derrick Brashear [Wed, 29 Aug 2001 19:45:37 +0000]
cvs-needs-readme-
20010829
warn of the dangers of cvs snapshots
explain how to use one
Nathan Neulinger [Wed, 29 Aug 2001 18:40:51 +0000]
venus-makefile-cleanup-
20010829
cleanup and remove now unused for/do constructs
Nathan Neulinger [Wed, 29 Aug 2001 18:37:32 +0000]
afsd-makefile-cleanup-
20010829
cleanup for afsd makefile
Nathan Neulinger [Wed, 29 Aug 2001 18:36:27 +0000]
linux24-make-kdump-build-
20010829
make kdump at least buildable, not particularly pretty
Derrick Brashear [Wed, 29 Aug 2001 18:12:35 +0000]
dux-documentation-update-
20010829
based on information from joda@pdc.kth.se
Johan Danielsson [Wed, 29 Aug 2001 17:55:56 +0000]
dux-create-loadable-kernel-module-
20010829
with minor correction by shadow@dementia.org to install the module, but
we now create a loadable kernel module for dux
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
actually build afs.mod
====================
fix typo
Derrick Brashear [Wed, 29 Aug 2001 17:14:49 +0000]
xdr-int64-dont-build-on-dux-ever-
20010829
some form of xdr_int64 is always available on dux, so don't build it.
Derrick Brashear [Wed, 29 Aug 2001 04:59:38 +0000]
mpp-needs-unistd-for-protos-on-irix-
20010828
so we don't get the implicit int return type and upset the irix compiler
Nathan Neulinger [Wed, 29 Aug 2001 02:19:55 +0000]
makefile-updates-
20010828
clean up all the makefiles to remove bogus targets, eliminate trailing /
requirement from DESTDIR, avoid needing to pass things like DESTDIR around
between makefiles
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
remove bogus quoting
Derrick Brashear [Wed, 29 Aug 2001 01:46:57 +0000]
linux-call-afs-dopartialwrite-from-afs-memwrite-and-afs-ufswrite-not-afs-linux-write-
20010828
attempt to deal with case where data not being flushed from cache
Derrick Brashear [Tue, 28 Aug 2001 19:03:49 +0000]
linux-attempt-to-support-forcible-umount-
20010828
not well tested, likely neither complete nor 100% correct.
Derrick Brashear [Tue, 28 Aug 2001 15:05:34 +0000]
solaris-kernel-lacks-mem-functions-
20010828
this is a band-aid, since it maps all memsets to bzero; a replacement
memset is actually needed for the non zero case
Nickolai Zeldovich [Mon, 27 Aug 2001 04:35:06 +0000]
afs-evalmountpoint-return-code-resync-
20010826
resync error codes so they work like they did before afs-lookup-check-evalmountpoint-return-
20010221
Derrick Brashear [Thu, 23 Aug 2001 18:46:32 +0000]
windows-authentication-recognize-time-out-of-bounds-error-
20010823
so people don't get "unknown" error 37
Derrick Brashear [Thu, 23 Aug 2001 18:26:43 +0000]
linux-kernel-headers-have-conflicting-min-max-defs-
20010823
so we cheat and call our macros something else.
based on report by Owen LeBlanc <LeBlanc@mcc.ac.uk>
Chas Williams [Thu, 23 Aug 2001 18:17:40 +0000]
windows-installer-updates-
20010823
change references to be to openafs and not afs
Nathan Neulinger [Thu, 23 Aug 2001 18:07:24 +0000]
hpux10-may-be-hppa-2-
20010823
deal with more uname output
James Peterson [Sun, 19 Aug 2001 15:44:41 +0000]
windows-updates-
20010819
1. Version control (Win9x & Windows NT/2000)
NTMakefile.i386_win95 and NTMakefile.i386_nt40 added AFSPRODUCT_VERSION
variable, setting this will propagate through the software by setting
the product version for the installation and client dialog boxes. In
particular it will provide correct notification if Win2K installation is
being upgraded, reinstall or downgraded.
Version information shows up in the following ways:
Welcome dialog during installation
Properities page for Install.exe (Windows Installation routine)
Windows Add/Remove Dialogs application list
AFS Control Center and Client dialog boxes
See README-WIN9X.TXT or README-NT.TXT for further information on how to set thi
s
variable.
2. CellServDB (Win9x & Windows NT/2000)
The installer can choose between various sources for CellServDB:
a) Previous installed file, afsdcell.ini(WinNT/2000) or CellServDB(Win9x).
b) File that comes with the installation package (recent copy from grand.centra
l.org)
c) Download a the file from the Web (default http://grand.central.org/dl/cellse
rvdb/CellServDB).
d) Browse for a file
3. Drive Mapping (Win9x & Windows NT/2000)
The installer can choose up to two drive mappings during the installation
process. Default is map Z: to AFS root and U: to user home directory
4. Silent Running (Win9x & Windows NT/2000)
Setup.exe is capable of running silently (-s option); that is, it will use a pr
e-made
response script to drive its responses. You can also do a normal installation
with
the record option (-r) to build a sample response file.
The installation routine has been improved to accept a modified response file s
o the
administrator can setup up additional drive mappings including substituting the
user's
loggin name into the path. By using a text editor an administrator can setup a
variable
path name that includes %LOGINNAME% in a path statement. This variable will be
substituted for the current user's login name. (Only at installation time.)
For example: if an administrator wanted to install AFS client on a machine that
had the
following mappings:
Z:=/
U:=/afs/afscell.org/u/username
Q:=/afs/afscell.org/general
Then follow these steps:
a) run setup with -r option and specify install to record responses into file s
etup.iss
setup.exe -r -f1setup.iss
b) Follow normal installation responses
c) Edit the setup.iss response file by modifying the "DRIVEPATH section".
This response file could start off looking like this:
[DLG_DRIVEPATH-1]
Result=1
Drive_0=Z:
Path_0=/
Share_0=all
Drive_1=U:
Path_1=/afs/afscell.org/u/administrator
Share_1=home
Count=2
This section map would be changed to look like this:
[DLG_DRIVEPATH-1]
Result=1
Drive_0=Z:
Path_0=/
Share_0=all
Drive_1=U:
Path_1=/afs/afscell.org/u/%LOGINNAME%
Share_1=home
Drive_2=Q:
Path_2=/afs/afscell.org/general
Share_2=genrl
Count=3
d) Use the silent mode to install AFS (must log to windows as your user name e.
g. Frank)
setup.exe -s -f1setup.iss
HINT: Share name should be limited to 12 characters.
The response file terminate if the installation is in any way different; for
example,
the response is recorded on a clean machine and it is run on a system where
AFS
is already installed.
The execution is truly silent, except for a log file.
The last response is BootOption and if set to 1 it will reboot your machine!
Refer to additional documentation on silent/record in you Install Shield User's
Guide.
5. Fixed the Un-Installation bug that damaged the NetBT parameter registration. (Win2k/NT only)
6. Change Default selection for Win2000 to Client and Documentation only. (Win2
K/NT only)
The default installation is with Server and Control Center NOT selected.
7. Win9x Client Operation (Win9x only)
Win9x client has been changed to allow "connection" with out forcing
authentication. Previous implementation of the Win9x client had three steps to
the
connection process: 1) start client 2) obtain tokens 3) Map drives
The updated Win9x client can leave the username blank and select to Connect. T
herefore, only
the client will be started (without obtaining tokens). The user can still map
drives
(those that don't require authentication). This is particularity useful if you
want to
use a different routine to obtain authentication tokens or additional drive map
pings.
A command line option has also been added (-noid). This option Prevent selecti
on of
(Gray out) username/password. This will cause the client to start up without au
thentication.
By using both -noid and -connect allows the user to run the AFS client in login
script
that could provide Kerbos 5 authentication and addition drive mapping.
8. Installation (Win9x only)
Fix installation into paths that have space, e.g. \Program Files\Afscli
====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
complete list in first message
Jeremy Stribling [Thu, 16 Aug 2001 08:56:51 +0000]
bosadmin-setrestarttime-should-take-a-structure-
20010816
bos_ExecutableRestartTimeSet called BOZO_SetRestartTime incorrectly
Nathan Neulinger [Thu, 16 Aug 2001 08:54:48 +0000]
configure-simplify-hp-detection-for-sysname-
20010816
cut from 2 rules to one
Chas Williams [Thu, 16 Aug 2001 02:01:05 +0000]
linux-osi-clear-inode-locking-fix-
20010816
"i think this was missed from a patch i sent a while back to cleanup
the iput() of afs inodes. i think the lock(vc->lock) needs to be in
osi_clear_inode() since osi_clear_inode is called a bit more often
than afs_delete_inode(). however, this like just might be uneeded
since no one has seen any problems apparently."
Hartmut Reuter [Thu, 16 Aug 2001 01:50:55 +0000]
clear-xfreemallocs-in-shutdown-rxevent-
20010816
only likely to matter to mr-afs
Derek Atkins [Thu, 16 Aug 2001 01:48:48 +0000]
fix-afsconfig-ordering-for-rx-
20010816
to fix symbol versioning problems
change to rxgen ok on the basis that nothing other than AFS is in any danger
of using rx kernel code