snj
27a064c07c
The current version of OpenLDAP is 2.4.21.
2010-01-22 20:33:18 +00:00
dyoung
cd1709255c
Move a start of sentence to the first column.
2010-01-22 20:27:57 +00:00
dyoung
3246497ec1
Mention all of the API routines in the NAME section, and capitalize
...
'percpu'. Also in the NAME section, call it a "Per-CPU storage
allocator."
2010-01-22 20:18:46 +00:00
dyoung
6a3223be07
Add a manual page for per-CPU storage. Somebody should read this to
...
make sure I've described it correctly and intelligibly.
TBD: hook this up in the Makefile and in the set lists.
2010-01-22 20:11:16 +00:00
sborrill
51f4fcdba7
Enable CONFIG_DEBUG_FILE option to allow debug messages to be sent to
...
a file instead of stdout.
2010-01-22 16:41:57 +00:00
martin
f11c121338
Remove sparc specific code, use device properties instead.
2010-01-22 16:12:41 +00:00
martin
fb74de11bc
Recognize ie @ vme as a network device.
2010-01-22 16:11:26 +00:00
jdc
5fd95f0bc6
Remove port-specific code for determining MAC address, and use device
...
properties instead (c.f. gem(4) and hme(4)).
2010-01-22 14:34:34 +00:00
plunky
567387c17c
execute lists of commands in sub-shells so that the cwd doesn't get
...
not changed between commands
(nbmake will execute all commands in the same context when given -j)
this allows HAVE_PCC=yes tools build to install the pcc files
2010-01-22 11:08:40 +00:00
wiz
e19b1da713
Fix typo. Make HTML-ready. Remove trailing whitespace. Add dot in
...
abbreviation.
2010-01-22 10:28:08 +00:00
hubertf
4be2fea5d0
Document sysctls
2010-01-22 09:18:07 +00:00
martin
f9e1815aaf
Unify the name of the device property to hold a MAC address - there was
...
no clear majority for either "mac-addr" vs. "mac-address", but a quick
gallup poll among developers selected the latter.
2010-01-22 08:56:04 +00:00
hubertf
739e259054
Let kernel build when MALLOCLOG is defined but DIAGNOSTIC is not.
...
Else, hitmlog() is defined but not used, which triggers a warning.
2010-01-22 08:32:05 +00:00
hubertf
73699ad19c
regen - thanks for the reminder @ veego
2010-01-22 08:01:49 +00:00
snj
f3bbc67d3e
Document "-f". From Andreas Wiese in PR bin/35409, slightly modified.
2010-01-22 05:41:36 +00:00
taca
bf8e25a5bf
Fix to deal with CVE-2009-4355 from OpenSSL's repositroy.
2010-01-22 03:42:47 +00:00
jakllsch
6b47b91e08
Correct an error in previous commit.
2010-01-22 01:22:00 +00:00
jakllsch
6f6dd47b49
Convert to C99 types. Make whitespace more consistent.
2010-01-21 23:26:58 +00:00
hubertf
3c3fb74cfa
add/improve a few devices
2010-01-21 23:23:44 +00:00
dyoung
53aaf4795c
Spelling fix: correspoding -> corresponding.
2010-01-21 20:51:31 +00:00
pooka
830034140c
Add static to packdevi() like the local prototype says.
2010-01-21 18:06:38 +00:00
macallan
f716aea43a
get rid of architecture-specific firmware calls to determine the MAC address
...
on sparc(64) and macppc - use device properties instead
tested by myself on macppc and martin on sparc64
2010-01-21 17:40:09 +00:00
martin
cabe7be741
Remove sparc specific code, rely on device properties instead
2010-01-21 16:14:39 +00:00
martin
cfecc310ae
Copy the "shared-pins" property over to device_props as well.
2010-01-21 15:58:32 +00:00
martin
65cc18f336
fix a ref counting leak
2010-01-21 15:56:08 +00:00
tsutsui
766937a0b1
Regen this properly per procedure described in src/tools/compat/configure.ac.
2010-01-21 12:55:04 +00:00
pooka
6cd1fb47bd
remove accidentally committed bit. pointed out by Patrick Welche
2010-01-21 12:02:25 +00:00
martin
eb839ec6d8
Make sure to not provide the global ethernet address for add on
...
interfaces w/o FCode (the respective driver will know what to do).
2010-01-21 11:43:20 +00:00
martin
38619af42b
Split the part out of prom_getether() that deals with the local
...
firmware device node into a new function.
2010-01-21 11:40:01 +00:00
jruoho
791571cbd1
In preparation for upcoming changes:
...
* Provide proper definitions and use these.
* Clarify the evaluation of _STA.
* Mark the state of a sensor according to the return value from _STA.
* Share the basic object evaluation in _BIF and _BST.
* Verify the object types before using the objects.
* Be aware of bogus values from _BIF and _BST, as noted in the
specification.
Despite of the list, functional change should be minimal. Ok pgoyette@.
2010-01-21 08:57:17 +00:00
msaitoh
8ececd13c6
Remove an extra debug printf(). KNF.
...
No functional change.
2010-01-21 08:52:20 +00:00
macallan
8953b23350
make RI_CENTER and RI_FULLCLEAR work with a shadow framebuffer
2010-01-21 05:32:18 +00:00
pgoyette
17d5113226
Remove unnecessary call to kauth_cred_free().
...
This resolves an occassional crash I'd been experiencing as reported on
current-users@
Fix suggested by and OK elad@
2010-01-21 04:40:22 +00:00
dyoung
17096c0d86
Cosmetic: join some lines. Get out early on errors, change
...
switch (...) {
...
error = ...;
break;
}
return error;
to
switch (...) {
...
return ...;
}
2010-01-21 02:53:51 +00:00
dyoung
4cb8eac3b5
All that the activation hook radioactivate() did was to change
...
sc_dying, and nothing in the driver examines sc_dying, so get rid of
radioactivate() and sc_dying.
2010-01-21 02:19:55 +00:00
dyoung
975667d3ea
Take care not to dereference a NULL softc.
2010-01-21 02:14:42 +00:00
simonb
dea9b0fedb
Use TAB as a separator to be consistent with the rest of this file.
2010-01-21 01:59:09 +00:00
pooka
e5b23d6072
Move arch-local variable to a better namespace to make build again.
2010-01-21 01:23:14 +00:00
rmind
f6d80c92e0
pool_cache_invalidate: comment out invalidation of per-CPU caches (nobody depends
...
on it, at the moment) until we decide how to fix it (xcall(9) cannot be used from
interrupt context). XXX: Perhaps implement XC_HIGHPRI.
2010-01-20 23:40:42 +00:00
martin
6d8f3b9e7c
Remove sparc specific code and HME_USE_LOCAL_MAC_ADDRESS hack, instead
...
use the "mac-address" device property if present.
2010-01-20 22:58:37 +00:00
jnemeth
a485eea416
add Buzz Aldrin, second man on the moon
2010-01-20 22:56:59 +00:00
martin
d20519d1b6
Add the mac-address as device property for all network devices
2010-01-20 22:54:22 +00:00
jmmv
74504e4315
Ask the user to enable fetch_pkg_vulnerabilities in /etc/daily.conf right
...
after installation. Automatic changes from sysinst will come later.
2010-01-20 22:24:18 +00:00
jmmv
8026500970
Default fetch_pkg_vulnerabilities to NO and complain if it is set to that
...
value when packages are found (so that the user knows he is not getting the
vulnerability checks).
Why? People is complaining. (And somehow, the argument that NetBSD doesn't
do any network operation by default convinces me that it should continue to
do so.)
But still, I will be adding a question to sysinst to enable/disable this.
2010-01-20 22:19:20 +00:00
tsutsui
9357df271a
Backout previous.
2010-01-20 19:54:07 +00:00
ginsbach
2dfe7f3174
- Fix bug where -o outfile fails when outfile does not exist. Pointed
...
out by Tony Finch.
2010-01-20 19:02:42 +00:00
dyoung
146411a622
Cosmetic: get out of cgdioctl() early. Instead of
...
int ret;
switch (...) {
case ...:
ret = ...;
break;
}
return ret;
write:
switch (...) {
case ...:
return ...;
}
2010-01-20 19:00:47 +00:00
dyoung
c95d6a20b9
Get out of cgd_detach() early on error. Do not call disk_destroy(9)
...
on error, that leaves the cgd_softc in an inconsistent state.
Fixes a crash during shutdown reported by Patrick Welche. Thanks
to Patrick for reporting and for testing the fix.
2010-01-20 18:55:17 +00:00
pgoyette
d03b2461a3
Remove kern_assert.c - it's not needed here cuz it's already pulled in
...
by sys/lib/libkern/Makefile.libkern
OK pooka@
2010-01-20 18:13:40 +00:00
phx
bc6040205b
Have to include rtas.h for NRTAS definition.
2010-01-20 17:12:08 +00:00