pgoyette
a8a84e00d2
Per suggestion from christos@, make both timestamp fields 64-bits wide.
2017-01-04 01:52:13 +00:00
pgoyette
09c45791e2
Fix error handling confusion between error and errno
2017-01-04 01:29:18 +00:00
pgoyette
394eed3eed
Adapt to new version of the sysctl export structure
2017-01-04 01:06:26 +00:00
pgoyette
5a0b3ff699
Rearrange the sysctl export structure for better alignment.
2017-01-04 01:05:58 +00:00
christos
106cdf0378
use symbolic constants; no functional change.
2017-01-03 20:59:32 +00:00
christos
58298223f1
Add more curses functions (Hi Roy!)
2017-01-03 18:43:13 +00:00
abhinav
1bd07c5d11
The range of the SS field is [0,60]
...
From the POSIX time.h man page:
"The formal definition of UTC does not permit double leap seconds, so all mention of double leap seconds has been removed, and the range shortened from the former [0,61] seconds seen in previous versions of POSIX."
2017-01-03 16:01:05 +00:00
christos
042834e792
simplify, and call the hooks after the address has been deleted like we did
...
for the ipv4 case.
2017-01-03 15:14:31 +00:00
abhinav
a74c622d52
Sqlite 3.16.0 is out.
2017-01-03 15:12:25 +00:00
christos
0a91c122c2
put it the way we had it before; since we check for the resulting size after
...
we added the extra space we can be equal to the size of the buffer.
2017-01-03 15:07:59 +00:00
roy
5a86062c02
Add missing man pages for wsyncup.3 and wcursyncup.3
2017-01-03 13:21:40 +00:00
christos
9a6f404c92
fix off-by-one
2017-01-03 13:09:33 +00:00
roy
8cf8e1d614
Support 256 colour terms.
...
From: rofl0r <retnyg@gmx.net>
2017-01-03 12:42:06 +00:00
roy
330e363652
Now that we have the initialize_color capability,
...
init_color can be made to work.
From: rofl0r <retnyg@gmx.net>
2017-01-03 12:39:44 +00:00
skrll
0447572560
Do some more error checking.
...
PR/51551
2017-01-03 12:37:08 +00:00
abhinav
484007c8cd
Correct a sentence in the HISTORY section.
...
Remove a mention of "1989" at the end of the 4th paragraph in HISTORY section,
probably leftover because of copy-paste from the paragraph above.
Sort SEE ALSO.
Remove trailing white spaces at some places.
Remove Pp after Sh at few places as pointed out by mandoc.
ok christos@
2017-01-03 11:34:41 +00:00
maya
c29c35b7ee
Remove npx.4 for real now
2017-01-03 09:17:19 +00:00
maya
148cc75bdf
remove npx(4) and references to it. bump dates for reference removal.
...
This used to refer to x87 support for x86 machines.
npx isn't really a driver any more. we don't support x86 hardware
without an FPU, and we don't call it by that name in the code or
attach it as npx at something.
brought up on tech-kern. unfortunately the copy to port-i386 disappeared
in a spam filter.
2017-01-03 08:49:04 +00:00
kamil
e72ee6c5bd
Fix typo in distribution synckok.0 -> syncok.0
2017-01-03 04:12:18 +00:00
christos
58b79fbd23
need new file
2017-01-03 03:47:51 +00:00
christos
02124a36e8
always define all the renames.
2017-01-03 02:51:56 +00:00
wiz
636e3facfa
Fix tag.
2017-01-03 02:13:05 +00:00
christos
62f5bae942
fix the re-entrant prefixed case.
2017-01-03 01:56:03 +00:00
jakllsch
23d65d6d1d
The SiI3124 was implemented at a time when the ATA/ACS2
...
DATA SET MANAGEMENT/TRIM command did not exist. As such, the (presumably
immutable) lookup table in the chip does not know that this command
indicates a data write to follow. Use the PRB Protocol Override
functionality to tell the chip the protocol we need for this command.
For PR kern/51756.
2017-01-03 01:30:15 +00:00
rmind
f095afd741
npfctl: dynamic interface address handling; update npf.conf(8).
2017-01-03 01:29:49 +00:00
christos
29343d16d1
set to NULL after releasing to avoid double free.
2017-01-03 00:59:31 +00:00
rmind
c65c0a1d00
NPF: fix the interface table initialisation on load.
2017-01-03 00:58:05 +00:00
christos
e2b1cfe916
Add missing macros to the non-recursive prefixed-parser. Disable macros
...
for the recursive parser.
2017-01-03 00:50:11 +00:00
jnemeth
5c7485e31c
add rtsold to rc_obsolete_files :-(
2017-01-03 00:35:07 +00:00
christos
2e20bf3056
don't #define yywrap yywrap (that is if the prefix is yy, don't #define macros
...
for the same name). Breaks compatibility for things like:
#ifndef yywrap
int
yywrap(void)
{
return 1;
}
#endif
2017-01-03 00:22:56 +00:00
christos
6d0346a9a0
more yy_size_t <-> int fixes
2017-01-02 23:21:14 +00:00
christos
2cc136e9e2
make this compile as a module.
2017-01-02 23:02:04 +00:00
christos
2bddf11345
- You can't just call the pfil hook to remove an address before an address
...
is removed! Hold a reference instead, remove it, and then free it.
- GC iatoifa()
2017-01-02 23:00:25 +00:00
rmind
0b635e7c1d
NPF: implement dynamic handling of interface addresses (the kernel part).
2017-01-02 21:49:51 +00:00
skrll
6f64034815
Fix boot on Gumstix Verdex boards.
...
Reported by smesgr on port-arm
2017-01-02 21:46:59 +00:00
cherry
32a513de8f
Document sys/uvm/uvm_init.c:uvm_md_init()
2017-01-02 21:42:01 +00:00
christos
b074ee6880
another int -> size_t
2017-01-02 21:20:00 +00:00
christos
0194574f37
another int to yy_size_t
2017-01-02 21:06:10 +00:00
martin
f263fe2c63
Add misising mixerctl file
2017-01-02 21:05:06 +00:00
kamil
d36d9d0066
Fix typo in atf_tc_set_md_var(): baic -> basic
...
No functional change.
2017-01-02 21:02:03 +00:00
christos
52df80a481
deal with our int -> size_t changes.
2017-01-02 20:53:11 +00:00
martin
72963afd05
libcurses version bump
2017-01-02 20:45:09 +00:00
martin
9b0b62c8b6
Add mixerctl test directory
2017-01-02 20:37:12 +00:00
cherry
a05ac7df2a
Remove a redundant #ifdef _KERNEL/#endif pair.
...
ok mrg@
2017-01-02 20:22:20 +00:00
cherry
aee9580f27
We don't need sys/uvm/uvm_physseg.h installed, since userland has no
...
use for it.
Obsolete it in the set list.
2017-01-02 20:17:15 +00:00
martin
0a2168808c
Provide a dummy linux_sigset_t for all architectures that do not have
...
any machdep one. This make kdump compile again.
2017-01-02 20:10:44 +00:00
cherry
609524cc7d
Move sys/uvm/uvm_physseg.h inclusion to within _KERNEL only.
2017-01-02 20:08:32 +00:00
martin
6d90b98a1f
Regen (something apparently went wrong in previous)
2017-01-02 19:54:12 +00:00
christos
8647464c56
avoid yywrap redefinition
2017-01-02 19:24:39 +00:00
christos
c3b9216c96
delete the generated skeleton, we generate it all the time.
2017-01-02 18:41:18 +00:00