dholland
5bc8cc2b1c
Add lfs_kernel.h for declarations that don't need to be exposed to userland.
...
lfs currently has the following headers:
lfs.h - on-disk structures and stuff needed for userlevel tools
lfs_inode.h - additional restricted materials for userlevel tools
that operate the fs (newfs_lfs, fsck_lfs, lfs_cleanerd)
lfs_kernel.h - stuff needed only in the kernel
and the following legacy headers that are expected to be mopped up and
folded into one of the above:
lfs_extern.h - function prototypes
ulfs_bswap.h - endian-independent support
ulfs_dinode.h - now contains very little
ulfs_dirhash.h - dirhash support
ulfs_extattr.h - extattr support
ulfs_extern.h - more function prototypes
ulfs_inode.h - assorted kernel-only declarations
ulfs_quota.h - quota support
ulfs_quota1.h - more quota support
ulfs_quota2.h - more quota support
ulfs_quotacommon.h - more quota support
ulfsmount.h - legacy copy of ufsmount material
2013-07-28 01:05:52 +00:00
dholland
62ec15fbc5
Remove the now-pointless ulfs ops macros.
2013-07-28 00:37:07 +00:00
dholland
933722845b
Remove ulfsspec_close and ulfsfifo_close as they're not used.
2013-07-28 00:31:54 +00:00
dholland
88d53bfd92
Get rid of the ulfs_ops table as we only have one fs in here now.
2013-07-28 00:29:18 +00:00
dholland
a0792c8328
Improve comments in struct ulfsmount.
...
Also rearrange it to group related items together.
2013-07-28 00:28:33 +00:00
dholland
5e4138d300
Prune unused stuff from struct ulfsmount.
2013-07-28 00:28:05 +00:00
christos
485bfa6f6a
mention new bind.
2013-07-27 19:25:23 +00:00
christos
31e900e600
merge conflicts for bind-9.9.3-P2
2013-07-27 19:23:09 +00:00
christos
2cdb6d11c4
lists for new bind 9.9.3-P2
2013-07-27 19:22:10 +00:00
christos
e71be23a11
- conditionalize on mkcrypto
...
- add libraries
2013-07-27 18:16:26 +00:00
pooka
2eebe6e2de
Extend #undef _FORTIFY_SOURCE to both files to avoid compiler
...
warning for -O0 and fortify combination.
from Alessio Sergi via github
2013-07-27 17:37:29 +00:00
jklos
ddc0ac3bda
Fix typo that kept SD card on BeagleBone from being configured. From
...
Dennis Ferguson.
2013-07-27 17:10:28 +00:00
christos
0448dd3b02
Import bind 9.9.3-P2
2013-07-27 15:22:38 +00:00
kefren
6ca68e7c50
Disable ip forwarding at penultimate hop
...
Raise the ping wait time a little bit in order for changes to propagate
over ldp
2013-07-27 14:39:24 +00:00
kefren
6ea87284a2
don't expect failure anymore
2013-07-27 14:36:39 +00:00
kefren
7eaad7a39f
check route messages sizes more carefully
...
cache pid
treat every message at a time, even if there are more messages to read
interpret also cloning routes
The latter two should fix the ldp_regen test
2013-07-27 14:35:41 +00:00
martin
c5c422fa26
In .fini invoke destructors (fix copy & pasto)
2013-07-27 13:07:06 +00:00
skrll
283149fa94
Fix KASSERT to avoid assumptions about ipl order.
...
XXX Temporary measure?
2013-07-27 11:19:09 +00:00
skrll
c4b75127d1
Switch hppa to USE_COMPILERCRTSTUFF=no
2013-07-27 11:13:57 +00:00
kiyohara
bdd2f21f7e
Add COM_16750 to opt_com.h.
2013-07-27 07:02:03 +00:00
kiyohara
157818c590
As for the console of ns16750, comintr() may be called before comopen().
...
If sc_lcr is not initialized at this time, console will be in an ugly state.
2013-07-27 06:54:35 +00:00
kiyohara
3950103e65
Remove white-spaces, null-line and new-line.
2013-07-27 06:43:56 +00:00
matt
fa03729f71
Use jbsr and add END(__start)
2013-07-26 19:49:19 +00:00
martin
6dae3ba8c7
Simplify to new ___start() signature.
...
Seems to fix PR port-m68k/48076.
2013-07-26 18:47:23 +00:00
njoly
17b707526d
New testcase which checks that rump copyin/copyout/copyinstr/copyoutstr
...
version return EFAULT for special NULL "user" address.
ok pooka@.
2013-07-26 16:09:48 +00:00
njoly
c74676d01d
Make copyinstr/copyoutstr return EFAULT for special NULL "user"
...
address.
Ok pooka@.
2013-07-26 16:07:51 +00:00
msaitoh
ad60ec6602
Style change.
2013-07-26 05:46:19 +00:00
matt
7c78a65eeb
Fix some more CERROR inversions
2013-07-25 22:08:15 +00:00
wiz
c690a93593
Remove superfluous Pp.
2013-07-25 21:29:00 +00:00
msaitoh
b6ccf3bacb
Add some new bit definitions of Structured Extended Feature Flags Enumeration
...
Leaf from the document (Intel 64 and IA-32 Architectures Software Developer's
Manual).
2013-07-25 16:34:29 +00:00
msaitoh
15389b84a6
Fix the bit positions in CPUID_SEF_FLAGS macro. On snprintb(), position 1
...
means LSB(bit0). The bit position from HLE to SMAP was 1 bit right shifted.
The bit position of BMI1 was completely wrong.
2013-07-25 16:31:33 +00:00
macallan
bc460f321e
fix width vs height typo
...
from imre at vdsz.com
2013-07-25 15:09:27 +00:00
kefren
2276864e5a
add a couple of tests for dynamic MPLS routes generation using ldpd
2013-07-25 14:28:29 +00:00
tcort
ce9722db69
edid.9: fixes for example code
...
- 'struct edid_info' in edidvar.h uses 'struct videomode' so
videomode.h needs to be included too.
- edid_print takes a pointer to 'struct edid_info' so add the & operator.
OK by wiz@
2013-07-25 14:10:30 +00:00
pgoyette
d96eb15780
fferentiate zegrep and zfgrep by their basename only, so they can be
...
invoked with a pathname (ie, /usr/bin/z{e,f}grep).
OK wiz@
2013-07-25 12:25:23 +00:00
kefren
7ecc7b7c66
* don't request explicitly for uid 0 as various system policies may make that
...
unnecessary
* correct the mplsif message. We don't need an IP address assigned on it
anymore
2013-07-25 08:40:30 +00:00
msaitoh
7299f27da9
Clear struct stat correctly. Fixes PR#46373.
2013-07-25 04:32:37 +00:00
msaitoh
b269f9fa1f
Clear memory as intended. Fixes PR#46372.
2013-07-25 04:21:47 +00:00
matt
10392817ff
Only jump to CERROR if carry is set, not clear.
2013-07-24 15:38:07 +00:00
kefren
6da4e2e622
report about route tag in sysctl route walker
2013-07-24 15:31:04 +00:00
christos
fa3151c9b2
adjust for make(1) printing the nesting level.
2013-07-24 14:03:22 +00:00
skrll
dd5eecf954
Bump date for previous.
2013-07-24 11:54:04 +00:00
skrll
5fad374c29
There wasn't a codegen bug - the test program itself was buggy.
...
Nothing to see hear... move along.
2013-07-24 11:45:48 +00:00
skrll
114c94b6cd
Fix msgsz confusion.
2013-07-24 11:44:10 +00:00
skrll
9c3b844c69
Clarify msgsz.
2013-07-24 11:42:50 +00:00
kefren
0c8e14c9e8
* use a flag in label struct in order to determine if we should treat the
...
associated routes using RTF_HOST
* clean the mess in flush_mpls_routes that could result in accessing
uninitialized memory
2013-07-24 09:05:53 +00:00
wiz
c1275cef8f
Only use .%R inside Rs/Re. Improve spacing.
2013-07-24 07:00:16 +00:00
wiz
9046849a85
Fix typo.
2013-07-24 06:57:09 +00:00
kefren
2e7b898409
EXP -> TC
...
document RFC4182 sysctl flag
document a little bit more the IMPLNULL operation
2013-07-24 06:31:09 +00:00
kefren
708985b712
Add -tag description as suggested in PR/45071
2013-07-24 06:28:10 +00:00