Commit Graph

243712 Commits

Author SHA1 Message Date
abhinav
f282f7d15c Fix grammar. 2016-07-14 18:21:31 +00:00
christos
21c3ca2d5c use sysctl to print multicast addresses 2016-07-14 18:19:11 +00:00
christos
91eb1e8293 provide net.inet.multicast, like we have net.inet6.multicast to be used
by netstat.
2016-07-14 18:18:16 +00:00
christos
20a2c0a7f7 make sure we cleanup properly when fd is too big. 2016-07-14 18:16:51 +00:00
abhinav
2e498fa9f2 Use .In for header file. 2016-07-14 17:43:48 +00:00
abhinav
d1c42b6403 Add comma to separate the Nm entries. 2016-07-14 17:17:58 +00:00
abhinav
24f5d739f4 Add missing words and fix grammar. 2016-07-14 17:09:03 +00:00
abhinav
263b36c655 Fix sentence. 2016-07-14 16:09:56 +00:00
skrll
c9a9fc846f Adapt this to the recent sys/uvm/pmap/pmap_tlb.c changes. MP kernels
now don't trigger KASSERTs
2016-07-14 15:51:41 +00:00
skrll
bf5805b9c2 Use KERNEL_PID instead of 0 2016-07-14 15:50:31 +00:00
skrll
6f2e9c1031 Fix some comments. 2016-07-14 15:49:43 +00:00
msaitoh
5457a8e2a4 - Use aprint*() more in xxx_attach().
- Add missing aprint_naive("\n").
- Remove extra spaces and tabs.
- KNF.
2016-07-14 10:19:05 +00:00
nonaka
1c1d2c157d Fix RCS Id. 2016-07-14 10:02:43 +00:00
msaitoh
b14b7c4301 - Use aprint() more in isic_pcmcia_attach().
- Add missing aprint_naive("\n").
- swap device_xname() and cde->name in the output of a printf().
2016-07-14 09:27:14 +00:00
abhinav
3b46a91395 Fix grammar and be consistent between using 0 and zero. 2016-07-14 07:19:11 +00:00
christos
1c128d4498 From tedu at openbsd:
kevent validates that ident is a valid fd by getting the file. one sad
quirk: uint64 to int32 truncation can lead to false positives, and then
later in the array sizing code, very big mallocs panic the kernel.
add a check that the ident isn't larger than INT_MAX in the fd case.
reported by Tim Newsham
2016-07-14 06:22:17 +00:00
skrll
ccd0ac494d Spell PMAP_TLB_NEED_SHOOTDOWN correctly 2016-07-14 05:00:51 +00:00
skrll
7f64d56466 Trailing whitespace 2016-07-14 04:49:55 +00:00
msaitoh
b331f99208 KNF. No functional change. 2016-07-14 04:19:26 +00:00
msaitoh
b3c7a10a8f - Use aprint_normal_dev() instead of aprint_error_dev() when printing
Ethernet address.
- Use aprint() more.
- KNF.
2016-07-14 04:15:27 +00:00
msaitoh
1e88b6113d Use aprint*() instead of printf() in the attach function.
KNF.
2016-07-14 04:12:08 +00:00
msaitoh
663ec00239 Use aprint_error() instead of aprint_normal() on error. 2016-07-14 04:01:32 +00:00
msaitoh
d21ffc75e5 - Use aprint*() instead of printf() in xxx_attach().
- Add missing aprint_naive("\n");
- KNF
2016-07-14 04:00:45 +00:00
matt
fdd524d4cc Library which implements the softfloat primitives using FP instructions
Currently contains only untested MIPS routines.
XXX move arm libc_vfp to here.
2016-07-14 01:59:18 +00:00
christos
143eb5c5cf fix sysctl based interface printing, and annotate where we should add the
missing multicast printing code.
2016-07-13 22:01:12 +00:00
christos
543b506e7c Use sysctl for interface printing (-i), leave on for multicast address printing
(-ia) and comment in the code where this is missing?
XXX: should that be an ioctl or sysctl? provide getifmultiaddrs() via the
routing socket? I guess since this is just for netstat a simple sysctl or
ioctl would suffice. I lean towards sysctl.
2016-07-13 21:57:01 +00:00
macallan
bfeedbc2cf appease gcc by removing now unnecessary cast 2016-07-13 21:33:28 +00:00
skrll
a4e34e27d6 Fix compile 2016-07-13 21:31:03 +00:00
macallan
b530e5c554 make this compile again 2016-07-13 21:25:15 +00:00
maya
407bb4505c Fix a deadlock
ok dholland@
2016-07-13 16:26:26 +00:00
maxv
0fbc3ea8d4 x86_alldisks can be NULL, so don't dereference it. Not tested, but obvious
enough.
2016-07-13 15:59:54 +00:00
matt
f1bfe5838e Fix libproc compat setting 2016-07-13 15:58:37 +00:00
maxv
828c59bc22 Reorder some instructions, reduces the diff between amd64 and i386. 2016-07-13 15:53:26 +00:00
maxv
0ae80e2785 Remove msgbuf_paddr. 2016-07-13 15:39:33 +00:00
maxv
82880de2fb KNF 2016-07-13 15:35:56 +00:00
maya
f0395d220b Removed unused variable 2016-07-13 15:12:20 +00:00
shm
3d9e7389b4 Add USE_FORT support. 2016-07-13 13:10:04 +00:00
jmcneill
90c253b56b add drvctl(4) 2016-07-13 11:12:56 +00:00
jmcneill
5be74d296b Add netbsd32 support for drvctl(4) 2016-07-13 11:11:53 +00:00
hannken
da7d165fe0 rtcache_clear_rtentry: use LIST_FOREACH_SAFE as the element gets
removed from the list.
2016-07-13 09:56:20 +00:00
njoly
9c5f636bf3 Add testcase that ensure that stack hard limit is never smaller than
soft limit.
2016-07-13 09:53:16 +00:00
njoly
84b8b47bee In dosetrlimit() round stack hard limit just like soft one.
Avoid cases where hard limit becomes smaller than soft limit.
2016-07-13 09:52:00 +00:00
abhinav
2893d320e8 Fix grammar and be consistent between using zero and 0. 2016-07-13 09:05:16 +00:00
abhinav
25421db367 Add STANDARDS section, referencing IEEE std 1003.1-2008
ok wiz@
2016-07-13 06:50:02 +00:00
knakahara
d0cdb1d106 Add missing network MP-ify changes.
Pointed out by chs@n.o.
2016-07-13 05:45:00 +00:00
ozaki-r
09c9d891be Get rid of wrongly added TAILQ_INSERT_TAIL 2016-07-13 03:19:29 +00:00
christos
76d6b0a033 Add all the variant microcode from linux, but don't install it yet.
Switch to the linux copyright. Note the microcode.h does not build
the same code at least for rt2860.
2016-07-13 00:19:01 +00:00
christos
f853680af1 sync with FreeBSD 2016-07-13 00:15:44 +00:00
maya
d80255b801 Avoid redefining UPAGES
(now defined in mips/mips_param.h)

Fixes build
2016-07-13 00:04:28 +00:00
christos
59d044e5b1 Use the proper channel for some things.
Remove debugging now that it all works.
2016-07-13 00:01:27 +00:00