Commit Graph

200337 Commits

Author SHA1 Message Date
wiz
9b5852d027 Typo fix. 2011-04-28 14:38:49 +00:00
wiz
7dd3adc79d Fix a typo and punctuation. 2011-04-28 14:34:33 +00:00
wiz
7c8df5b473 Fix typo. 2011-04-28 14:29:53 +00:00
wiz
5cdd89dee6 Typo fix. 2011-04-28 14:28:47 +00:00
wiz
b319995661 Improve wording in description. 2011-04-28 14:24:18 +00:00
wiz
2fed8df9e0 Fix typo. 2011-04-28 14:21:52 +00:00
wiz
3643fab3aa Punctuation fix. 2011-04-28 14:18:08 +00:00
wiz
48b93558a9 Fix typo. 2011-04-28 14:16:40 +00:00
wiz
db9c61275b Punctuation fix. 2011-04-28 14:15:53 +00:00
wiz
ce5b3bb1f9 Heimdal is not an OS. 2011-04-28 14:04:02 +00:00
wiz
ebdacac575 Punctuation nit, sendmail(8) -> (1). 2011-04-28 13:54:13 +00:00
wiz
e37a000e90 Sort sections, punctuation nits. 2011-04-28 13:51:47 +00:00
wiz
901cdb562b Typo fix. 2011-04-28 12:22:35 +00:00
wiz
c8bdc0a9f7 New sentence, new line. 2011-04-28 12:18:30 +00:00
wiz
b882daa546 New sentence, new line. Sort sections. 2011-04-28 12:16:10 +00:00
wiz
0b710d099b New sentence, new line. 2011-04-28 12:15:35 +00:00
wiz
9505784535 Sort sections. 2011-04-28 12:12:47 +00:00
wiz
8bd2274743 Remove superfluous Pp. 2011-04-28 12:06:41 +00:00
wiz
ed5cd81dad Mark up file as argument. 2011-04-28 12:01:58 +00:00
wiz
29e0fd69e9 Sort sections. 2011-04-28 12:00:55 +00:00
wiz
3652074286 Sort ERRORS. 2011-04-28 11:58:50 +00:00
wiz
769b2ceb89 security(7), not (8). 2011-04-28 11:57:08 +00:00
wiz
560b21b44e Fix a typo. 2011-04-28 11:56:26 +00:00
wiz
abc39e8ff4 Spelling. 2011-04-28 11:25:12 +00:00
wiz
85e4f3c354 security(7), not (8). 2011-04-28 11:23:57 +00:00
wiz
dbd13d8219 Spelling. 2011-04-28 11:22:44 +00:00
mbalmer
44190c279c On december 16, 1991, Kazakhstan declared its independence from the USSR. 2011-04-28 07:42:20 +00:00
mbalmer
3c3e4a052f Fix SCO. 2011-04-28 07:32:36 +00:00
mbalmer
9d34d3bbe5 Kazakh character code mappings reside in KAZAKH/, not MISC/. I really wonder
why nobody noticed this before...
2011-04-28 07:08:59 +00:00
martin
d21307a5d2 Fix offsets used in the assembly code to save global registers into a
jmp_buf, add a compile time assert to catch this kind of divergence
in the C code.
Move the fixed "%npc = %pc + 4" computation to longjmp, this frees
the sigcontext sc_npc value. Use this space to save the savemask
for siglongjmp (we have run out of space behind the globals).
Fixes the tests/lib/libc/setjmp/t_threadjmp tests, and also hopefully
fixes PR port-sparc64/44902.
2011-04-27 21:08:48 +00:00
mbalmer
fe857470e2 Add new files. 2011-04-27 20:06:46 +00:00
mbalmer
5f971e5eac Add Japan CBM character codes. 2011-04-27 20:05:56 +00:00
mspo
2161779cdf adding myself to src/distrib/notes/common 2011-04-27 18:51:14 +00:00
hannken
ac8cd690ce Remove no longer needed flag BC_SCANNED /* Block already pushed during sync */. 2011-04-27 09:47:25 +00:00
hannken
64ee4fdf9f Remove no longer needed flag FSYNC_VFS /* fsync: via FSYNC_VFS() */. 2011-04-27 09:46:27 +00:00
plunky
6192253699 drop inline here, to avoid C99 vs GNU differences 2011-04-27 08:32:42 +00:00
mrg
4f6a431a93 prepare to convert more raidframe old lock/sleep APIs to mutex/condvar:
- remove RF_DECLARE_EXTERN_MUTEX and RF_DECLARE_STATIC_MUTEX, the qualifier
  can be provided at the use point with the normal define
- rename the *LGMGR_MUTEX() macros to *mutex2() names, and add some more
  defines for use:
	rf_declare_mutex2()
	rf_declare_cond2()
	rf_lock_mutex2()
	rf_unlock_mutex2()
	rf_init_mutex2()
	rf_destroy_mutex2()
	rf_init_cond2()
	rf_destroy_cond2()
	rf_wait_cond2()
	rf_signal_cond2()
	rf_broadcast_cond2()
- use the new names for the configureMutex(), which previous used some combo
  of direct mutex* calls and macros
- convert the node_queue to use a mutex/cv combo
- in rf_ShutdownEngine() and DAGExecutionThread(), also signal the former from
  the latter when it is done and about to exit
- convert iodone_lock to use the new macros
2011-04-27 07:55:14 +00:00
plunky
4de0226ca9 drop 'external' inline here, to avoid C99 vs GNU differences 2011-04-27 07:47:33 +00:00
plunky
0be28cead8 drop 'inline' here, to avoid C99 vs GNU differences 2011-04-27 07:42:11 +00:00
hannken
bb3ca01e60 Cleanup ffs fsync and make devices on wapbl enabled file systems work here:
- Replace the ugly sync loop in ffs_full_fsync() and ffs_vfs_fsync() with
  vflushbuf().  This loop is a relic of softdeps and not needed anymore.

- Add ffs_spec_fsync() for device nodes on ffs file systems that calls
  spec_fsync() like all other file systems do and then updates the ctime.

Discussed on tech-kern.

Should fix PRs:
PR #41192 wapbl diagnostic panic during cgdconfig
PR #41977 kernel diagnostic assertion "rw_lock_held(&wl->wl_rwlock)" failed
PR #42149 wapbl locking panic if watching DVD
PR #42551 Lockdebug assert in wapbl when running zpool
2011-04-27 07:24:52 +00:00
martin
00d08a9058 Simplify previous: the original code was mostly correct but relied on
"register_t" being signed.
2011-04-27 06:22:11 +00:00
wiz
eafacad922 Bump date for uvm_swap_stats() removal; remove superfluous Pp. 2011-04-27 06:02:03 +00:00
rmind
69a047faf7 Make stopsigmask static, sprinkle __cacheline_aligned and __read_mostly. 2011-04-27 00:38:37 +00:00
rmind
3d12d00f76 G/C M_EMULDATA 2011-04-27 00:36:47 +00:00
rmind
fe41737f5c Remove public uvm_swap_stats() routine, keep it internal. 2011-04-27 00:35:52 +00:00
joerg
5e6a27ebbb Remove Mach specific trace points. 2011-04-27 00:00:46 +00:00
wiz
ea124d4898 Remove references to just removed Darwin and Irix emulation. Bump date. 2011-04-26 22:17:17 +00:00
joerg
321098b572 Kill CTL_EMUL_NAMES. 2011-04-26 21:27:44 +00:00
yamt
25dcdd54cb fix _STANDALONE build 2011-04-26 20:53:34 +00:00
martin
73637f3626 Add TNF license. OK: pooka. 2011-04-26 20:42:01 +00:00