Commit Graph

216243 Commits

Author SHA1 Message Date
joerg
438eb8acb3 Use sysctl based code netstat -r. Remove support for post-mortem
analysis.
2013-01-28 13:49:08 +00:00
nakayama
f34b355a3e Follow the change from HAS_SSP to HAVE_SSP. 2013-01-28 13:46:47 +00:00
mlelstv
3b0450ca73 Do not use *bp after freeing it in brelse. 2013-01-28 10:16:35 +00:00
skrll
b93243363a Move mdnsd to beagleboard only. RPI doesn't like it at the moment. 2013-01-28 09:06:19 +00:00
skrll
9e1b71001d Getting HCINT_SOFTWARE_ONLY from the hardware is an error. KASSERT that
it doesn't happen.
2013-01-28 08:22:01 +00:00
skrll
c6f618ce57 Fix up device mode vs host mode register naming confusion.
No functional change.
2013-01-28 08:19:33 +00:00
skrll
4da332f873 Move and tweak an #if 0 printf 2013-01-28 08:03:13 +00:00
matt
320f94bd2d Enable INET6 2013-01-28 06:38:50 +00:00
matt
81629d5d17 Deal with _LP64 properly. 2013-01-28 06:34:09 +00:00
matt
0e9f9224ed Add long double aliases 2013-01-28 06:26:20 +00:00
matt
59bc6bed3d Add aeabi strong aliases. 2013-01-28 06:23:44 +00:00
matt
afc5014a73 Deal with an end-of-string condition properly. 2013-01-28 06:23:14 +00:00
matt
b61c7ad71a Change movsne to movnes for clang. 2013-01-28 06:22:34 +00:00
matt
710d6a63da Make with work with gcc 4.5 or clang. 2013-01-28 06:17:57 +00:00
matt
674f7f26d9 Use uint32_t for __asm to appease clang. 2013-01-28 06:16:05 +00:00
matt
d71cca3bb3 Disable bzero_page_vfp and bcopy_page_vfp since it really isn't any faster
than memcpy.
2013-01-28 06:14:45 +00:00
jym
5dbef361fb Re-instate backwards compatible security.models.bsd44.{curtain,securelevel}.
They were mistakenly removed when curtain and securelevel moved to
secmodel_extensions(9).

Reported by tls@ on tech-security@.

XXX will ask for pull-up for -6.
2013-01-28 00:51:29 +00:00
christos
863ded0e2b now that msdos works, document it. 2013-01-28 00:23:18 +00:00
christos
db2e654869 A little more debugging. 2013-01-28 00:17:18 +00:00
christos
0a54bc86e7 use pcbmap instead of the open coded hack now the pcbmap works. 2013-01-28 00:16:48 +00:00
christos
0e23c760cc don't forget to initialize the cache. 2013-01-28 00:16:24 +00:00
christos
a61457fac4 fix recursion error handling. top level directory works. 2013-01-27 22:53:03 +00:00
christos
330e688f74 fix root detection (although the code is a noop) 2013-01-27 22:52:38 +00:00
christos
5f60de37ca - don't forget to set de_pmp
- unexpand inserted tabs to the "." and ".." strings!
2013-01-27 22:52:19 +00:00
christos
180d451863 undo c99 2013-01-27 22:09:24 +00:00
christos
1df38ec62e - some more debugging
- use msdosfs_update() -- should not be needed.
- remove <sys/mount.h>
2013-01-27 22:07:19 +00:00
christos
50df1c7d20 don't need sys/mount.h in userland. 2013-01-27 22:04:19 +00:00
christos
9eab57ada8 nbtool_config.h undefines _NETBSD_SOURCE, and that makes <sys/types.h> not
define cpuid_t, which makes <sys/mount.h> unincludable. Although this is a
bug in the build system, it is simpler to fix it here.
2013-01-27 21:56:26 +00:00
christos
3c0f9bd4e8 tidy up debugging printfs; no functional change. 2013-01-27 20:15:58 +00:00
christos
e502c2ffd0 This works well enough to populate plain files in the root dir. creating
directories fails.
2013-01-27 20:05:46 +00:00
rkujawa
a25b458635 Remove confusing, leftover comment. 2013-01-27 19:58:04 +00:00
riastradh
33d53fbdf3 Set NOMAN before including <bsd.own.mk> to really fix PR 47500.
(Hi, christos.)
2013-01-27 19:21:12 +00:00
matt
4cd37de9e2 Revert back to one dmarange 2013-01-27 19:06:45 +00:00
matt
26b3d46dd1 Get rid of _BUS_DMAMAP_MEM_XLATE 2013-01-27 19:00:08 +00:00
sjg
bd0907ac07 In SHELL COMMANDS section, provide some clues about different
behavior in jobs vs non-jobs mode.
Move the comment about when shell is skipped to this discussion
from COMPATABILITY.
Remove the incorrect statement about default mode being somehow
neither jobs mode or compat mode (it is compat mode).
2013-01-27 18:52:01 +00:00
matt
8684f0c4a8 Add a _BUS_DMAMAP_NOALLOC which tells bus_dmamem_alloc to skip that
dmarange when allocating memory.
Add a second dmarange to bcm23xx obio to allow it to map coherently mapped
memory.
2013-01-27 18:31:31 +00:00
matt
fece6942a1 Make _BUS_DMAMAP_MEM_XLATE supplied by the caller. 2013-01-27 17:48:38 +00:00
matt
f344dcac4c Get rid of _BUS_DMAMAP_MEM_XLATE 2013-01-27 17:44:39 +00:00
matt
c794d14d8e Change _BSD_SSIZE_T_ so it's not dependent of _BSD_PTRDIFF_T_ 2013-01-27 17:43:20 +00:00
matt
25ba9acaed Add a flag to make bus_dmamem_map use the bus/sys transation table when
mapping bus addresses.  Make bcm2835 obio use it.
2013-01-27 17:38:55 +00:00
christos
14d475a7bf the max msdos file size is less than size_t so don't bother checking against it. 2013-01-27 16:03:15 +00:00
christos
804eae6b82 fixed directory entry allocation. Now the file data remains and is currently
broken.
2013-01-27 15:35:45 +00:00
pgoyette
cdacdbad2e Fix indentation of kcpuset_export_u32 2013-01-27 15:21:38 +00:00
mbalmer
c826b564cf exitting -> exiting. 2013-01-27 14:47:37 +00:00
christos
12188588a0 zero memory 2013-01-27 14:10:22 +00:00
christos
96e132de94 Don't print the pointers in debugging, it is not useful.
zero all memory
2013-01-27 14:10:03 +00:00
christos
7176d59dec fix single letter parsing. 2013-01-27 14:07:12 +00:00
jmcneill
545ad3210a don't transmit while in a key change is in progress 2013-01-27 12:48:56 +00:00
martin
c24cac0ff3 Make it compile on 32bit AND 64bit archs. 2013-01-27 12:25:13 +00:00
mbalmer
510ae4bec6 Allow this to compile on 32bit architectures. 2013-01-27 10:07:23 +00:00