openafs.git
17 years agowindows-build-clean-20061010
Jeffrey Altman [Tue, 10 Oct 2006 16:45:56 +0000]
windows-build-clean-20061010

more AFS_component_version_number.h files to remove

17 years agorevert-aix5-curpag-20061009
Derrick Brashear [Tue, 5 Dec 2006 19:37:00 +0000]
revert-aix5-curpag-20061009

failed to commit this. commit now
VS: ----------------------------------------------------------------------

17 years agonbsd-sysnames-20061008
Tracy Di Marco White [Mon, 9 Oct 2006 04:27:48 +0000]
nbsd-sysnames-20061008

FIXES 42019

add missing sysnames

17 years agoh-enum-r-avoid-extra-hold-20061008
Derrick Brashear [Mon, 9 Oct 2006 04:15:45 +0000]
h-enum-r-avoid-extra-hold-20061008

FIXES 40699

avoid orphaning an extra hold

17 years agocellservdb-20061008
Jeffrey Hutzelman [Mon, 9 Oct 2006 04:14:02 +0000]
cellservdb-20061008

cellservb update from grand.central.org

17 years agowindows-scache-ref-leak-fix-20061008
Jeffrey Altman [Mon, 9 Oct 2006 02:48:44 +0000]
windows-scache-ref-leak-fix-20061008

pointer not pointer to pointer

17 years agowindows-scache-ref-dbg-20061008
Jeffrey Altman [Sun, 8 Oct 2006 21:37:01 +0000]
windows-scache-ref-dbg-20061008

add debugging code that can be activated with #define DEBUG_REFCOUNT
to assist in debugging scache refcount leaks

17 years agowindows-scache-ref-leak-20061008
Jeffrey Altman [Sun, 8 Oct 2006 21:30:03 +0000]
windows-scache-ref-leak-20061008

plug two more scache refcount leaks

17 years agowindows-osi-prototypes-20061007
Jeffrey Altman [Sat, 7 Oct 2006 23:34:49 +0000]
windows-osi-prototypes-20061007

osi_LogCreate

17 years agowindows-misc-cleanup-20061007
Jeffrey Altman [Sat, 7 Oct 2006 23:32:27 +0000]
windows-misc-cleanup-20061007

reformat some code; make sure that pointers are copied while
mutexes are held; ...

17 years agowindows-scache-ref-leak-20061007
Jeffrey Altman [Sat, 7 Oct 2006 23:27:14 +0000]
windows-scache-ref-leak-20061007

return the cm_scache_t whose refCount was increased

17 years agowindows-misc-fixes-20061006
Jeffrey Altman [Fri, 6 Oct 2006 17:31:30 +0000]
windows-misc-fixes-20061006

#ifdef DEBUG_REFCOUNT the ref count log entries so they aren't always
compiled in

comment out the remaining location where the write lock on cm_scacheLock
is dropped in order to obtain the scache mutex on the object returned
from cm_GetNewSCache().  Dropping the lock results in more than one
thread being given the same cm_scache_t which is more dangerous than
blowing away the contents of the object without holding the mutex

ensure that cm_BufWrite is always called with a non-NULL scp.  Add
an assertion to double check that we do it all the time.

17 years agowindows-log-crlf-20061006
Jeffrey Altman [Fri, 6 Oct 2006 17:23:27 +0000]
windows-log-crlf-20061006

use CR-LF as the afsd.log EOL so that it can be read with notepad.exe

17 years agonetbsd-30-20061006
Tracy Di Marco White [Fri, 6 Oct 2006 15:55:35 +0000]
netbsd-30-20061006

FIXES 40782

add support for netbsd 3.0, netbsd 4.0(ish)

17 years agoosi-probe-avoid-out-of-range-memory-reads-20061006
Chaskiel M Grundman [Fri, 6 Oct 2006 14:59:54 +0000]
osi-probe-avoid-out-of-range-memory-reads-20061006

FIXES 41858

avoid oops on opteron due to accessing unmapped memory

17 years agolinux-2619-aio-and-read-write-changes-20061006
Chas Williams [Fri, 6 Oct 2006 14:27:44 +0000]
linux-2619-aio-and-read-write-changes-20061006

changes to support 2.6.19

17 years agopt_util-man-page-20061005
Marcus Watts [Fri, 6 Oct 2006 06:37:38 +0000]
pt_util-man-page-20061005

Initial man page for pt_util.

17 years agowindows-more-misc-fixes-20061005
Jeffrey Altman [Fri, 6 Oct 2006 06:13:49 +0000]
windows-more-misc-fixes-20061005

replace all DebugBreak() calls with osi_panic.

remove calls to cm_RecycleSCache from VNOVNODE handler as its not
lock safe to drop and re-obtain locks to adhere to the locking
hierarchy

restore reference to CM_SCACHESYNC_STOREDATA that should
not have been removed.

remove attempts to adhere to locking hierarching from cm_GetNewSCache.
dropping the cm_scacheLock is too dangerous

add a check to ensure that the scache refcount is not zero if there
is a valid smb_fid_t pointing to it.

more debug logging

17 years agowindows-misc-fix-20061005
Jeffrey Altman [Thu, 5 Oct 2006 21:29:39 +0000]
windows-misc-fix-20061005

still tracking down issues when large numbers of temporary files
are created and deleted in the same directory from multiple
machines.

VNOVNODE must return CM_ERROR_BADFD

ensure that all calls to cm_GetCallback are made from cm_SyncOp.

add CM_SCACHESYNC_FORCECB logic to cm_SyncOp so that it can be
removed from cm_GetAccess

don't mix CM_SCACHESYNC_NEEDCALLBACK with CM_SCACHESYNC_STOREDATA
or CM_SCACHESYNC_FETCHDATA

17 years agobitwise-or-20051005
Jose Nazario [Thu, 5 Oct 2006 16:34:29 +0000]
bitwise-or-20051005

bitwise and, not logical for p->flags in vnode_stop
reported by Jose Nazario

17 years agowindows-misc-fix-20061004
Jeffrey Altman [Thu, 5 Oct 2006 06:39:46 +0000]
windows-misc-fix-20061004

more cleanup from recent patches.  comment out the recycling code because
it is not possible to implement it using the current locking hierarchy.

change cm_BufWrite to take a pointer to cm_scache_t instead of a fid
which must be used to look up a new reference to the cm_scache_t.
more often than not we already have the scp and in the one case we
don't we can let the caller look up the scp and then call cm_BufWrite
if it is found.  If not, we have saved a function call and a bunch
of lock operations.

add a lot more logging.

improve the scp mutex handling within smb_CloseFID

17 years agowindows-wrong-lock-20061003
Jeffrey Altman [Wed, 4 Oct 2006 06:29:25 +0000]
windows-wrong-lock-20061003

grab the correct mutex so we don't free one we are not holding

17 years agowindows-oops-20061003
Jeffrey Altman [Wed, 4 Oct 2006 02:35:43 +0000]
windows-oops-20061003

didn't mean to delete this release mutex

17 years agowindows-multi-fix-20061003
Jeffrey Altman [Wed, 4 Oct 2006 01:23:30 +0000]
windows-multi-fix-20061003

misc cleanups

hold scp->mx while recycling

add FILE_NOTIFY_CHANGE_CREATION to the notification mask when adding
or deleting files

17 years agowindows-fetchstatus-20061003
Jeffrey Altman [Wed, 4 Oct 2006 01:18:43 +0000]
windows-fetchstatus-20061003

Don't call cm_GetCallback without checking the current callback status
with cm_HaveCallback first

17 years agowindows-multi-fix-20061002
Jeffrey Altman [Tue, 3 Oct 2006 04:22:37 +0000]
windows-multi-fix-20061002

Fix the following problems:

it is possible for a file to be created, buffers to become dirty from
writes, the file to be deleted, the stat cache entry to be reused, and
the dirty buffers to remain dirty until the end of time.

stat cache entry starvation can occur because of large numbers of dirty
buffers which take too long to be written to the file server.  The
thread that writes dirty buffers in background writes/checks a small
number of buffers, SQRT(buf-count), and then sleeps for 5 seconds.
Writing all of the dirty buffers via this algorithm produces untimely
results.

threads can end up waiting for a callback on the same stat cache entry
even though there are no threads actually attempting to perform the
FetchStatus.

And:

Fix prototypes

Optimize cm_GetNewSCache to reuse scache entries for deleted files
and entries not in the hashtable before allocating a new one.  This
keeps the entries in the hashtable to a minimum and thereby improving
performance for all other operations which must lookup a scache entry
by FID.

Add support for Sequential and Random Access flags

17 years agowindows-track-lock-tid-20061002
Jeffrey Altman [Tue, 3 Oct 2006 03:45:16 +0000]
windows-track-lock-tid-20061002

Keep track of the tid of the holding thread for writers

17 years agowindows-scache-ref-leak-20061002
Jeffrey Altman [Tue, 3 Oct 2006 03:27:22 +0000]
windows-scache-ref-leak-20061002

when handling VNOVNODE must release the scache entry.

17 years agoavoid-assert-for-missing-vnodes-20060928
Jeffrey Altman [Thu, 28 Sep 2006 13:58:04 +0000]
avoid-assert-for-missing-vnodes-20060928

specify the correct number of parameters for VForceOffline_r()

17 years agodarwin90-ukernel-setjmp-conflict-20060927
Derrick Brashear [Wed, 27 Sep 2006 22:13:15 +0000]
darwin90-ukernel-setjmp-conflict-20060927

FIXES 39354

setjmp isn't safe for #define KERNEL

17 years agokeyring-gcpags-20060927
Chas Williams [Wed, 27 Sep 2006 21:01:10 +0000]
keyring-gcpags-20060927

FIXES 40659

do gcpags for keyrings without needing tasklist_lock

17 years agogetcellunix-use-stdio-again-20060925
Derrick Brashear [Tue, 26 Sep 2006 03:22:28 +0000]
getcellunix-use-stdio-again-20060925

i have no idea why this is so ugly. put it back to something like how it was.

17 years agocopyonwrite-dont-assert-20060925
Derrick Brashear [Tue, 26 Sep 2006 02:36:03 +0000]
copyonwrite-dont-assert-20060925

take it offline, don't assert.

17 years agogetcell-still-stupid-20060925
Ken Aaker [Mon, 25 Sep 2006 16:04:12 +0000]
getcell-still-stupid-20060925

FIXES 40829

should be fixed a third time too

17 years agowindows-no-more-win95-20060921
Jeffrey Altman [Fri, 22 Sep 2006 21:20:54 +0000]
windows-no-more-win95-20060921

after killing off win95 at the hackathon there were some build
dependencies left behind.  now we build again.

17 years agovioc-header-split-20060921
Jeffrey Altman [Fri, 22 Sep 2006 21:18:50 +0000]
vioc-header-split-20060921

enable windows to build again

17 years agowindows-kfw-sdk-20060921
Jeffrey Altman [Fri, 22 Sep 2006 20:17:45 +0000]
windows-kfw-sdk-20060921

kfw 3.1

17 years agotasklist-lock-redux-20060922
Jeffrey Hutzelman [Fri, 22 Sep 2006 12:16:24 +0000]
tasklist-lock-redux-20060922

try tasklist_lock weak binding in osi_probe

if no tasklist_lock, fall back to rcu locking

17 years agopr-changeentry-arg-types-20060921
Derrick Brashear [Thu, 21 Sep 2006 22:10:28 +0000]
pr-changeentry-arg-types-20060921

FIXES 40568

this has been broken a while, we just noticed it because of prototypes

17 years agoavoid-assert-for-missing-vnodes-20060921
Derrick Brashear [Thu, 21 Sep 2006 12:47:20 +0000]
avoid-assert-for-missing-vnodes-20060921

right now if a vnode is missing when we try to clone, we could assert. ick.

17 years agodont-close-this-afsconf-either-20060921
Derrick Brashear [Thu, 21 Sep 2006 12:38:04 +0000]
dont-close-this-afsconf-either-20060921

static means static

17 years agosalvage-zlc-update-20060920
Derrick Brashear [Wed, 20 Sep 2006 06:51:15 +0000]
salvage-zlc-update-20060920

avoid dealing so well with damaged namei volumes that we assume a temporary clone is damaged

17 years agolinux-i-blksize-test-20060919
Chas Williams [Tue, 19 Sep 2006 22:33:10 +0000]
linux-i-blksize-test-20060919

this was missed in the configure test conversions

17 years agowindows-loopback-install-20060919
Jeffrey Altman [Tue, 19 Sep 2006 06:48:22 +0000]
windows-loopback-install-20060919

FIXES 40291

Disable DNS Registrations for the Loopback Adapter and make sure
that Netbios is turned on.

17 years agosolaris-fopen-sucks-20060916
Derrick Brashear [Sun, 17 Sep 2006 06:01:43 +0000]
solaris-fopen-sucks-20060916

FIXES 38566

avoid issue trying fopen when fds 0-255 are in use already
yuck

17 years agofix-afsconf-leak-20060916
Derrick Brashear [Sat, 16 Sep 2006 20:40:19 +0000]
fix-afsconf-leak-20060916

this one's not a leak

17 years agoamd64-linux-missing-syscall-nrs-20060916
Derrick Brashear [Sat, 16 Sep 2006 20:11:04 +0000]
amd64-linux-missing-syscall-nrs-20060916

they removed these. makes it harder to probe for the ia32 syscall table
(ignoring the compilation issue)

cheat. they aren't going to change...

17 years agoxml-docbook-documentation-first-pass-20060915
Chas Williams [Sat, 16 Sep 2006 01:13:22 +0000]
xml-docbook-documentation-first-pass-20060915

needs more massaging to make it fit the tree, but, get it here first

17 years agodarwin80-avoid-stack-free-20060915
Derrick Brashear [Sat, 16 Sep 2006 01:10:23 +0000]
darwin80-avoid-stack-free-20060915

thanks to apple for their help; all i did was code the patch

17 years agonamei-emulate-flock-20060913
Derrick Brashear [Sat, 16 Sep 2006 00:23:18 +0000]
namei-emulate-flock-20060913

FIXES 39797

lockf when not locking and unlocking the whole file is fraught with peril

17 years agoafsconf-leak-20060915
Jeffrey Altman [Sat, 16 Sep 2006 00:17:23 +0000]
afsconf-leak-20060915

don't leak afsconf structs

17 years agouae-avoid-dups-20060914
Tom Keiser [Fri, 15 Sep 2006 00:58:24 +0000]
uae-avoid-dups-20060914

avoid duplicates in the errno space so we don't return the wrong error (something unexpected)

17 years agowindows-afs-config-20060913
Jeffrey Altman [Wed, 13 Sep 2006 18:49:58 +0000]
windows-afs-config-20060913

FIXES 3730

remove "Show Tray Icon" checkbox from afs_config

17 years agosuse-kernel-source-path-update-20060912
Derrick Brashear [Tue, 12 Sep 2006 19:57:17 +0000]
suse-kernel-source-path-update-20060912

no one can ever agree on anything

17 years agovol-voffline-avoid-early-freevolumeheader-20050906
Peter Somogyi [Thu, 7 Sep 2006 02:08:39 +0000]
vol-voffline-avoid-early-freevolumeheader-20050906

FIXES 39422

don't free vp before we finish using it

17 years agowindows-afs-shell-ext-32bit-20060906
Asanka Herath [Thu, 7 Sep 2006 00:12:31 +0000]
windows-afs-shell-ext-32bit-20060906

Generate a new GUID for the 64-bit AFS Shell Extension and install
the 32-bit version as part of the 32-bit tools

17 years agokeyring-dont-use-syscall2-20060906
Chas Williams [Wed, 6 Sep 2006 21:56:01 +0000]
keyring-dont-use-syscall2-20060906

avoid not-really-portable-use of syscall2

17 years agowindows-dot-dir-part-two-20060906
Jeffrey Altman [Wed, 6 Sep 2006 18:19:36 +0000]
windows-dot-dir-part-two-20060906

cm_LookupInternal can return the input stat cache entry when the name
is "."

the DNLC should not cache "." or ".."

17 years agowindows-dot-dir-20060906
Jeffrey Altman [Wed, 6 Sep 2006 07:11:52 +0000]
windows-dot-dir-20060906

when evaluating paths with cm_NameI treat the component "." as a no-op.

17 years agowindows-install-licenses-20060905
Jeffrey Altman [Wed, 6 Sep 2006 06:09:13 +0000]
windows-install-licenses-20060905

port LICENSES file contents to installers

17 years agowindows-fs-prototypes-20060905
Jeffrey Altman [Wed, 6 Sep 2006 00:51:44 +0000]
windows-fs-prototypes-20060905

remove unused prototype

17 years agowindows-vol-ntops-20060905
Jeffrey Altman [Wed, 6 Sep 2006 00:47:34 +0000]
windows-vol-ntops-20060905

if the function is namei_XXX on unix then it is nt_XXXX on Windows

17 years agopruclient-killer-logging-cleanup-20060905
Derrick Brashear [Tue, 5 Sep 2006 23:04:25 +0000]
pruclient-killer-logging-cleanup-20060905

vicelog this stuff instead of fprintf

17 years agocallpostamble-deal-with-null-host-20060905
Derrick Brashear [Tue, 5 Sep 2006 17:30:33 +0000]
callpostamble-deal-with-null-host-20060905

FIXES 38566

don't dereference garbage when no host was set

17 years agosalvage-zlc-update-20060905
Chaskiel M Grundman [Tue, 5 Sep 2006 15:59:46 +0000]
salvage-zlc-update-20060905

deal with damaged namei volumes better

17 years agowindows-vol-ntops-20060904
Jeffrey Altman [Mon, 4 Sep 2006 18:36:23 +0000]
windows-vol-ntops-20060904

add nt_SetNonZLC()

17 years agoautom4te-cache-is-evil-20060903
Russ Allbery [Sun, 3 Sep 2006 20:47:00 +0000]
autom4te-cache-is-evil-20060903

Purge autom4te.cache after running autoconf so that we don't ship its huge
trace files in source releases.  Add #!/bin/sh to the beginning of regen.sh
just because.

17 years agosalvage-zlc-20060903
Chaskiel M Grundman [Sun, 3 Sep 2006 06:50:12 +0000]
salvage-zlc-20060903

make salvager deal with zero link count files

17 years agonuke-do-not-pass-null-rock-20060903
Chaskiel M Grundman [Sun, 3 Sep 2006 06:32:33 +0000]
nuke-do-not-pass-null-rock-20060903

don't pass a null rock inot nuke(), fixing earlier introduced bug

17 years agodeprecate-fbsd-client-20060831
Jim Rees [Thu, 31 Aug 2006 14:22:50 +0000]
deprecate-fbsd-client-20060831

deprecate the FreeBSD client

17 years agowindows-gui2fs-20060831
Jeffrey Altman [Thu, 31 Aug 2006 12:33:22 +0000]
windows-gui2fs-20060831

following ui guidelines, errors should display the HAND icon and
warnings should display the EXCLAMATION.  Success should display
the INFORMATION icon.  Let's get this right.

17 years agowindows-fs-20060831
Jeffrey Altman [Thu, 31 Aug 2006 11:28:24 +0000]
windows-fs-20060831

FIXES 38949

fs sq and fs mkm on Windows didn't behave as on Unix

17 years agolinux-param-generator-20060831
Chas Williams [Thu, 31 Aug 2006 06:15:15 +0000]
linux-param-generator-20060831

FIXES 36888

not yet pulling up

17 years agoinline-bug-for-linux-20060831
Chas Williams [Thu, 31 Aug 2006 05:49:02 +0000]
inline-bug-for-linux-20060831

FIXES 38854

inline bug so we get sane oopses

17 years agowindows-firewall-config-20060830
Jeffrey Altman [Wed, 30 Aug 2006 21:14:59 +0000]
windows-firewall-config-20060830

Enable the firewall detection logic to work on Vista

17 years agowindows-init-log-eol-20060830
Jeffrey Altman [Wed, 30 Aug 2006 21:09:11 +0000]
windows-init-log-eol-20060830

change EOL to CR-LF for afsd_init.log

17 years agowindows-t2-search-dir-info-level-20060830
Jeffrey Altman [Wed, 30 Aug 2006 07:31:47 +0000]
windows-t2-search-dir-info-level-20060830

return CM_ERROR_INVAL if we don't recognize the requested infoLevel

17 years agowindows-winsock-init-20060829
Jeffrey Altman [Wed, 30 Aug 2006 02:40:03 +0000]
windows-winsock-init-20060829

WSAStartup and WSACleanup do not need to be wrapped by the app
to protect against multiple calls.

17 years agoaklog-deal-with-feeble-kdcs-20060829
Derrick Brashear [Tue, 29 Aug 2006 20:07:26 +0000]
aklog-deal-with-feeble-kdcs-20060829

i guess i should just give up and fix this here

17 years agoget-sbdev-configure-test-20060828
Marc Dionne [Mon, 28 Aug 2006 20:11:31 +0000]
get-sbdev-configure-test-20060828

FIXES 38736

the autoconf glue was missed before

17 years agowindows-pioctl-service-check-20060828
Jeffrey Altman [Mon, 28 Aug 2006 18:17:13 +0000]
windows-pioctl-service-check-20060828

before attempting a smb query check the service status.  fail immediately
if the afs service is not running.

17 years agowindows-talocale-20060829
Jeffrey Altman [Mon, 28 Aug 2006 06:36:01 +0000]
windows-talocale-20060829

initialize variables before use

17 years agowindows-dll-install-20060829
Jeffrey Altman [Mon, 28 Aug 2006 06:10:14 +0000]
windows-dll-install-20060829

install resource dlls in the same directory as the base modules

17 years agowindows-shell-ext-20060829
Jeffrey Altman [Mon, 28 Aug 2006 06:04:03 +0000]
windows-shell-ext-20060829

How did the afs_shl_ext_XXXX.dll module ever load on any platform?
Since the name afs_shl_ext.dll is not 8.3 we must specify the base name
explicitly.   Otherwise, it won't load.

17 years agowindows-cleanup-20060828
Jeffrey Altman [Mon, 28 Aug 2006 05:26:30 +0000]
windows-cleanup-20060828

cleanup AFS_component_version_number.h the right way

17 years agowindows-smb-set-eof-20060825
Jeffrey Altman [Sat, 26 Aug 2006 04:41:37 +0000]
windows-smb-set-eof-20060825

SMB_SET_FILE_END_OF_FILE_INFO is a LARGE_INTEGER not USHORT

17 years agowindows-smb-alignment-20060825
Jeffrey Altman [Fri, 25 Aug 2006 18:07:21 +0000]
windows-smb-alignment-20060825

on the wire smb data structures should be byte aligned

17 years agowindows-cm_volume-recycling-20060825
Jeffrey Altman [Fri, 25 Aug 2006 16:23:51 +0000]
windows-cm_volume-recycling-20060825

do not panic if we reach maxVolumes and there is a volume entry that
can be recycled.

17 years agokeyring-test-harder-20060825
Derek Atkins [Fri, 25 Aug 2006 06:21:43 +0000]
keyring-test-harder-20060825

FIXES 38470

don't enable keyring pags in older keyring kernels

17 years agomacos104-no-64bit-resid-yet-20060825
Chaskiel M Grundman [Fri, 25 Aug 2006 05:47:00 +0000]
macos104-no-64bit-resid-yet-20060825

we're not ready for 64bit resid yet (in dir code)

17 years agovol-init-locallock-20060824
Jeffrey Hutzelman [Thu, 24 Aug 2006 21:18:56 +0000]
vol-init-locallock-20060824

we never init this. oops.

17 years agopruclient-killer-fix-20060824
Derrick Brashear [Thu, 24 Aug 2006 05:31:25 +0000]
pruclient-killer-fix-20060824

FIXES 37251

yeah, i should commit the fix this time. not my day

17 years agotweak-afsd-autotune-20060821
Derrick Brashear [Mon, 21 Aug 2006 21:38:55 +0000]
tweak-afsd-autotune-20060821

this (chunksize tuning) needs to be revisited

17 years agospecfiles-20060821
Derrick Brashear [Mon, 21 Aug 2006 21:01:14 +0000]
specfiles-20060821

same for head

17 years agotiger-fix-largefile-20060820
Chaskiel M Grundman [Sun, 20 Aug 2006 23:12:46 +0000]
tiger-fix-largefile-20060820

FIXES 37890

don't make uio offset an int.
at the same time, fix resid similarly, and fix osi_file.c to accomodate that

17 years agolinux24-fix-20060820
Derrick Brashear [Sun, 20 Aug 2006 06:31:42 +0000]
linux24-fix-20060820

fix ifdef damage

17 years agolinux-keyring-pag-update-20060817
Chas Williams [Thu, 17 Aug 2006 14:55:43 +0000]
linux-keyring-pag-update-20060817

FIXES 37887

if you manage to patch the syscall table, then the setpag() in the
patched setgroups syscall and creates a new session keyring. it does
contain the right pag id but this isnt the intended behavior.

so setpag() becomes __setpag() which just does the group insertion.
(and perhaps it should be called something else?). the stat count for
the setpag operation might be more correct now (instead of also counting
the pag restores).

17 years agowindows-backconnectionhostnames-20060817
Jeffrey Altman [Thu, 17 Aug 2006 13:40:16 +0000]
windows-backconnectionhostnames-20060817

FIXES 37807

uninitialized variable reported due to dwAllocSize not being used
within the initial RegQueryValueEx call.  (ugh)

17 years agodarwin90-updates-20060813
Derrick Brashear [Sun, 13 Aug 2006 21:17:04 +0000]
darwin90-updates-20060813

make things compile cleanly

17 years agolinux-dentry-iput-20060813
Chas Williams [Sun, 13 Aug 2006 17:53:46 +0000]
linux-dentry-iput-20060813

FIXES 37576

update put_inode handler for swapping situation deadlock avoidance