3963 Commits

Author SHA1 Message Date
Tracy Di Marco White
9aade56ceb DEVEL15-netbsd-30-20061006
FIXES 40782

add support for netbsd 3.0, netbsd 4.0(ish)


(cherry picked from commit 04b51cc8df7a3210ea18228743cb156c0e2c7115)
2006-10-06 15:58:47 +00:00
Chaskiel M Grundman
b157ba37c2 DEVEL15-osi-probe-avoid-out-of-range-memory-reads-20061006
FIXES 41858

avoid oops on opteron due to accessing unmapped memory


(cherry picked from commit e39f4d87896c451afb8c38705de4c12fd3940182)
2006-10-06 15:02:56 +00:00
Chas Williams
5f9efaeebf DEVEL15-linux-2619-aio-and-read-write-changes-20061006
changes to support 2.6.19


(cherry picked from commit 775ea6f1b79b0e0e2b700e3894e01279e26ebbfa)
2006-10-06 14:29:14 +00:00
Jeffrey Altman
57336da0a6 DEVEL15-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


(cherry picked from commit b7117f61036c63238eb926c6eb71d42a56766501)
2006-10-06 06:15:22 +00:00
Jeffrey Altman
18336df014 DEVEL15-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


(cherry picked from commit 4cd9eee0155edba89b77779af9aea4f1aa55cd96)
2006-10-05 21:30:38 +00:00
Jeffrey Altman
139a46495e DEVEL15-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


(cherry picked from commit 38d464e5791dbd96d6da85a0c0123f8b575f4e39)
2006-10-05 06:41:28 +00:00
Jeffrey Altman
8d66c0f575 DEVEL15-windows-wrong-lock-20061003
grab the correct mutex so we don't free one we are not holding


(cherry picked from commit b9fd1d4c7eb672ec092596af7826e87e2d931c40)
2006-10-04 06:32:14 +00:00
Jeffrey Altman
6711ad9534 DEVEL15-windows-oops-20061003
didn't mean to delete this release mutex


(cherry picked from commit 93b3be7d1adfcf90bb21009891d9e62b440aa629)
2006-10-04 02:36:35 +00:00
Jeffrey Altman
d091134c91 DEVEL15-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


(cherry picked from commit de6a01e51d8ea97e943cb4fa93d6bba2ecae9644)
2006-10-04 01:24:42 +00:00
Jeffrey Altman
99a9bf2e27 DEVEL15-windows-fetchstatus-20061003
Don't call cm_GetCallback without checking the current callback status
with cm_HaveCallback first


(cherry picked from commit 665a125335c4844d35fa6510a38083602ef7fdbc)
2006-10-04 01:20:09 +00:00
Jeffrey Altman
72aeefaf23 DEVEL15-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


(cherry picked from commit 8da04000ec70e7eebe8bb18d317bb6b348b91449)
2006-10-03 04:23:21 +00:00
Jeffrey Altman
e6b68955bd DEVEL15-windows-track-lock-tid-20061002
Keep track of the tid of the holding thread for writers


(cherry picked from commit b17a5d8192c08909ae57b540b25804ad9e1ae8a3)
2006-10-03 03:48:23 +00:00
Jeffrey Altman
d9593faccc DEVEL15-windows-scache-ref-leak-20061002
when handling VNOVNODE must release the scache entry.


(cherry picked from commit 62e5dab3d6ea8105cec253b45cef3ebcc0da1930)
2006-10-03 03:30:20 +00:00
Jeffrey Altman
9ba9575703 DEVEL15-avoid-assert-for-missing-vnodes-20060928
specify the correct number of parameters for VForceOffline_r()


(cherry picked from commit 0fe7b3a058b6c9df06d4df4af1e0621dbd53f44d)
2006-09-28 14:01:47 +00:00
Derrick Brashear
e45a85c7be DEVEL15-darwin90-ukernel-setjmp-conflict-20060927
FIXES 39354

setjmp isn't safe for #define KERNEL


(cherry picked from commit 4bfe736b9157fa3ee4c1c851e53d66b18e774827)
2006-09-27 22:15:59 +00:00
Chas Williams
cc1184ccc2 DEVEL15-keyring-gcpags-20060927
FIXES 40659

do gcpags for keyrings without needing tasklist_lock


(cherry picked from commit 6a2ac1e2d41b30dfd466e001f3a545bda4bc8da8)
2006-09-27 21:02:45 +00:00
Derrick Brashear
4fa10363ec DEVEL15-getcellunix-use-stdio-again-20060925
i have no idea why this is so ugly. put it back to something like how it was.


(cherry picked from commit 2201fd6d9ff41506c1bc60d677ae268a1de42fbc)
2006-09-26 03:25:10 +00:00
Derrick Brashear
2a080a35cb DEVEL15-copyonwrite-dont-assert-20060925
take it offline, don't assert.


(cherry picked from commit c1d3a69976d7a6583a00176ff81dd66acb2cc07b)
2006-09-26 02:37:23 +00:00
Ken Aaker
3146e0cf93 DEVEL15-getcell-still-stupid-20060925
FIXES 40829

should be fixed a third time too


(cherry picked from commit 9bd3d0926bbdc8ee9dedfe17bd137d5327e45a62)
2006-09-25 16:06:57 +00:00
Jeffrey Hutzelman
b0354bae91 DEVEL15-tasklist-lock-redux-20060922
try tasklist_lock weak binding in osi_probe

if no tasklist_lock, fall back to rcu locking


(cherry picked from commit 928ad0445e91ecbfcd32a26e8c17b90ee0d83700)
2006-09-22 12:18:37 +00:00
Derrick Brashear
f3296f56ca DEVEL15-pr-changeentry-arg-types-20060921
FIXES 40568

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


(cherry picked from commit 955a58a5a850da4caeba9b45b0e8ff27a143b725)
2006-09-21 22:13:22 +00:00
Derrick Brashear
2e96cf69ae DEVEL15-avoid-assert-for-missing-vnodes-20060921
right now if a vnode is missing when we try to clone, we could assert. ick.


(cherry picked from commit b613480bd5eb6bc2a14c4e23229d90105291944c)
2006-09-21 12:51:10 +00:00
Derrick Brashear
42c283e567 DEVEL15-dont-close-this-afsconf-either-20060921
static means static


(cherry picked from commit 86f4e7620b24505ec8c0b788e3040974ac2ea449)
2006-09-21 12:41:45 +00:00
Derrick Brashear
de416a1ddd DEVEL15-salvage-zlc-update-20060920
avoid dealing so well with damaged namei volumes that we assume a temporary clone is damaged


(cherry picked from commit 1221e482d786a56ca52568ed29a9c981e674ad7a)
2006-09-20 06:55:32 +00:00
Chas Williams
b15bafceea DEVEL15-linux-i-blksize-test-20060919
this was missed in the configure test conversions


(cherry picked from commit 361751cbf4b0cfef9a738cfcfbbd589eee621ade)
2006-09-20 00:28:24 +00:00
Jeffrey Altman
ef6963de7f DEVEL15-windows-loopback-install-20060919
FIXES 40291

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


(cherry picked from commit 3e28a968e0b916c176b978da2807a7e4857faa18)
2006-09-19 06:51:27 +00:00
Derrick Brashear
77e72625ca DEVEL15-solaris-fopen-sucks-20060916
FIXES 38566

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


(cherry picked from commit 357771453be717ee10dc0d580f1b458008133ba3)
2006-09-17 06:02:26 +00:00
Derrick Brashear
2bc9e0129d DEVEL15-fix-afsconf-leak-20060916
this one's not a leak


(cherry picked from commit 57101f38a0a868b950e32bd70b95308b1edc243d)
2006-09-16 20:42:24 +00:00
Derrick Brashear
b4473a285c DEVEL15-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...


(cherry picked from commit 58e23eb620429f427cba72bbd2c982d81d9fbd9e)
2006-09-16 20:16:55 +00:00
Derrick Brashear
947ced9360 DEVEL15-darwin80-avoid-stack-free-20060915
thanks to apple for their help; all i did was code the patch


(cherry picked from commit 3473fa4ec7c8a7362003ba3d278345339bbf3e36)
2006-09-16 01:11:55 +00:00
Derrick Brashear
2b4539c011 DEVEL15-namei-emulate-flock-20060913
FIXES 39797

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


(cherry picked from commit 1c8080fe9dcb3713bf1231cf4b455e80c6f0c697)
2006-09-16 01:08:59 +00:00
Jeffrey Altman
009f220c5a DEVEL15-afsconf-leak-20060915
don't leak afsconf structs


(cherry picked from commit de5f1c47e8af9a7e4fd1b77ff5fc085859813b59)
2006-09-16 00:22:26 +00:00
Tom Keiser
ae0ee11523 DEVEL15-uae-avoid-dups-20060914
avoid duplicates in the errno space so we don't return the wrong error (something unexpected)


(cherry picked from commit 914b2e27dcf5b231832959d0b02dc1e40ca24c81)
2006-09-15 01:00:57 +00:00
Jeffrey Altman
088ddc5848 DEVEL15-windows-afs-config-20060913
FIXES 3730

remove "Show Tray Icon" checkbox from afs_config


(cherry picked from commit 975897d476ca5ade26d2d546620ba3bd97d8182a)
2006-09-13 18:51:57 +00:00
Derrick Brashear
4f56ce32e5 DEVEL15-suse-kernel-source-path-update-20060912
no one can ever agree on anything


(cherry picked from commit 94ff5651cb84a26ab931626392908684fae913f3)
2006-09-12 20:00:09 +00:00
Asanka Herath
66c9d4bd6b DEVEL15-package-logos-20060906
update installer logos for 1.5.x
2006-09-06 22:28:18 +00:00
Peter Somogyi
e5d1185852 DEVEL15-vol-voffline-avoid-early-freevolumeheader-20050906
FIXES 39422

don't free vp before we finish using it


(cherry picked from commit e7ec36ddeb0973c71514463862ad90d42f9b009c)
openafs-devel-1_5_8
2006-09-07 02:09:30 +00:00
Asanka Herath
db558ab64b DEVEL15-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


(cherry picked from commit 19e16d34a61945dd1ff3d2f93e48662087654daa)
2006-09-07 00:14:00 +00:00
Derrick Brashear
cfe70b084e DEVEL15-openafs-1-5-8-20060906
make 1.5.8
2006-09-06 22:15:16 +00:00
Chas Williams
b0a89483c0 DEVEL15-keyring-dont-use-syscall2-20060906
avoid not-really-portable-use of syscall2


(cherry picked from commit 3dc9bcb1289bb868a336e820d589b03246c36bce)
2006-09-06 21:58:47 +00:00
Jeffrey Altman
e9b5af8a86 DEVEL15-windows-notes-20060906
more changes for 1.5.8

====================
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 back the 1.5.x version of this file
2006-09-06 18:43:44 +00:00
Jeffrey Altman
45ea34b915 DEVEL15-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 ".."


(cherry picked from commit a63d753df88e547606f703764031ad1b9d18fa82)
2006-09-06 18:21:19 +00:00
Jeffrey Altman
298c56695a DEVEL15-windows-dot-dir-20060906
when evaluating paths with cm_NameI treat the component "." as a no-op.


(cherry picked from commit f47b934c133150fef80fec57ae738ca885b8a914)
2006-09-06 07:12:37 +00:00
Jeffrey Altman
1702fe38a2 DEVEL15-windows-install-licenses-20060905
port LICENSES file contents to installers


(cherry picked from commit e68b0f9cb4c0216548bdb30cf8f3e93d23491fb8)
2006-09-06 06:10:48 +00:00
Jeffrey Altman
994450d187 DEVEL15-windows-fs-prototypes-20060905
remove unused prototype


(cherry picked from commit b4d8384b6779369faa9c4fd533979f363ef4dc81)
2006-09-06 00:54:48 +00:00
Jeffrey Altman
6fa747bd52 DEVEL15-windows-vol-ntops-20060905
if the function is namei_XXX on unix then it is nt_XXXX on Windows


(cherry picked from commit 51b862ef8869823fd0ba09045b88cab9ab197117)
2006-09-06 00:50:18 +00:00
Derrick Brashear
431157559b DEVEL15-pruclient-killer-logging-cleanup-20060905
vicelog this stuff instead of fprintf


(cherry picked from commit 5bc1ab6cfabdfeb0e8f09308385d6680ce97645f)
2006-09-05 23:05:11 +00:00
Derrick Brashear
b71e322ae7 DEVEL15-callpostamble-deal-with-null-host-20060905
FIXES 38566

don't dereference garbage when no host was set


(cherry picked from commit 56bbd155db6941d915cf199f6e23cccfeb359ce8)
2006-09-05 17:33:25 +00:00
Chaskiel M Grundman
51fd922a9d DEVEL15-salvage-zlc-update-20060905
deal with damaged namei volumes better


(cherry picked from commit 2c103b8fb3a1b36e4c8eda986b8e82199d46e1b9)
2006-09-05 16:02:29 +00:00
Jeffrey Altman
0d780a1ea7 DEVEL15-windows-vol-ntops-20060904
add nt_SetNonZLC()


(cherry picked from commit 474df74c88464763d61889fbdcc1edd1167d4a94)
2006-09-05 15:52:23 +00:00