Commit Graph

207649 Commits

Author SHA1 Message Date
christos
21f928d30f Don't repeat what we just printed. 2011-12-24 23:38:43 +00:00
christos
588171e07d PR/45660: Henning Petersen: Overlapping buffer in catman.c. 2011-12-24 23:29:32 +00:00
christos
cc349219b4 PR/45739: Moritz Wilhelmy: top(1) segfaults on WINCH with unknown terminal 2011-12-24 22:29:48 +00:00
christos
47b488844e missing comma 2011-12-24 20:18:54 +00:00
christos
de766f5829 use the names from the include files. 2011-12-24 20:18:35 +00:00
christos
47e057d110 add ICMP_STRINGS, a few more missing constants. 2011-12-24 20:08:39 +00:00
christos
dfe558e7b1 put the histograms last and make them autosize (breaks compat with netstat). 2011-12-24 19:54:41 +00:00
christos
3f3e7f29e5 fix whitespace only 2011-12-24 19:54:13 +00:00
christos
6176e65815 add SKIP, fix PHOTURIS codes 2011-12-24 19:53:50 +00:00
reinoud
4157591bf9 Make signals work for NetBSD/usermode[i386] ! 2011-12-24 12:26:58 +00:00
reinoud
4225654626 Implement cpu_getmcontext() and cpu_setmcontext() 2011-12-24 12:23:24 +00:00
tsutsui
7407a6d451 Note libc/net/Makefile.inc hostname lookup -fno-tree-ter hacks for gcc 4.5 arm. 2011-12-24 05:05:55 +00:00
tsutsui
d1ac98d51b Specify "-fno-tree-ter" to getaddrinfo.c and gethnamaddr.c on arm and gcc45
for workaround of a possible optimazation bug.

On my W-ZERO3 and Zaurus, hostname lookup against CNAME by some commands
(ping(8), ftp(1) etc.) fails even though nslookup(8) returns a proper name
against the same CNAME, after NetBSD/arm ports has been switched to
gcc 4.5 since 201110311420Z (i.e 201110310000Z binaries worked but
201111010000Z ones not).

Building getaddrinfo.c and gethnamaddr.c in libc with "-O2 -fno-tree-ter"
(or using objects built by old gcc 4.1) seems to fix this issue.

Accroding to nonaka@, the following gcc bugzilla test case also fails
with -O2 but works with -O2 -fno-tree-ter on NetBSD/zaurus 5.99.57:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48863#c4
but CNAME lookup didn't fail on his environment even without this workaround.
2011-12-24 04:59:00 +00:00
macallan
a988027abf don't put alpha values in a variable named alpha since alpha doesn't like
variables conflicting with platform names
( just in case someone figures out how to stick an sm50x into an alpha )
2011-12-24 02:28:50 +00:00
macallan
b7781c972a rename alpha variable to avoid conflict with a platform macro on alpha 2011-12-24 02:13:21 +00:00
jmc
a8fd378f8a Include the ICMP_PHOTURIS error codes if we're going to define ICMP_PHOTURIS 2011-12-23 22:03:00 +00:00
rmind
32d19c916b Amend previous. 2011-12-23 20:53:31 +00:00
rmind
40947a78e4 Sync with reality a little. 2011-12-23 20:51:50 +00:00
christos
72ba32522f make ICMP_MAXTYPE 18 again to unbreak stats. 2011-12-23 19:08:50 +00:00
christos
1e34420a70 there is a macro for that, use it. 2011-12-23 16:56:54 +00:00
christos
b49426a4b0 Avoid buffer overflow, reported by Colin Percival at FreeBSD 2011-12-23 16:48:16 +00:00
skrll
8d30f00ce9 Whitespace. 2011-12-23 16:38:50 +00:00
skrll
ef7ea2cdf4 Define PMAP_NEED_PROCWR and provide pmap_procwr so that the i-cache is
synchronised with the d-cache appropriately.
2011-12-23 16:35:00 +00:00
christos
209e832a68 add missing icmp types. 2011-12-23 15:31:16 +00:00
tsutsui
bf759fcc29 - use correct ASID bits in MIPS_COP_0_TLB_HI
- save/restore current PID in tlb_invalidate_all() and cpu_switch_resume()
  as mipsX_subr.S does
2011-12-23 10:01:33 +00:00
tsutsui
99b79ff6ee Remove UCB clause 3. 2011-12-23 05:06:19 +00:00
tsutsui
b25081130c Add a default for isibootd(8). Pointed out by nonaka@. 2011-12-23 05:05:04 +00:00
sjg
25e3dfbf18 Mention limits of :P 2011-12-23 05:01:59 +00:00
jakllsch
71fd84843e Revert previous due to active usbmp branch(es). 2011-12-23 00:51:43 +00:00
jakllsch
7f2b9b9ad4 Adjust-away inconsistent and trailing whitespace. 2011-12-22 20:06:59 +00:00
tsutsui
71bf9b8ae5 Adjust for function merge and move. 2011-12-22 15:50:37 +00:00
tsutsui
17abcf4f77 Remove fuction declarations of m68881_restore() and m68881_save().
They are in <m68k/m68k.h>.
2011-12-22 15:47:15 +00:00
tsutsui
b417004b5f Merge m68881_save() and m68881_restore() (using most common mvme68k ones).
All functions are checked by my eyes, and all GENERIC kernels compile.
2011-12-22 15:33:28 +00:00
tsutsui
a894edf538 Remove obsolete header. 2011-12-22 15:07:08 +00:00
tsutsui
aef9b29589 No need to include <m68k/softintr.h>.
Old softintr(9) was superseded by MI softint(9).
2011-12-22 15:06:17 +00:00
reinoud
9e3fb3728b Redo uvm_map_setattr() to never fail and remove the possible panic. The
possibility of failure was a C&P error.
2011-12-22 13:12:50 +00:00
kiyohara
1bb32b0660 Check PSL_PR instead of CI_IDEPTH in INTR_PROLOG. 2011-12-22 11:33:54 +00:00
macallan
12da819751 don't probe colour depth on attach - we're going to change it anyway 2011-12-22 07:42:43 +00:00
macallan
a159e6169b don't switch to 8 bit for WSDISPLAYIO_MODE_EMUL if VOYAGERFB_ANTIALIAS
is defined
2011-12-22 07:32:33 +00:00
macallan
fa70cee0f2 support anti-aliased fonts and let the hardware do the alpha blending 2011-12-22 05:08:05 +00:00
macallan
6696a0c3b4 support running in 32bit colour with anti-aliased fonts
enable with options VOYAGERFB_ANTIALIAS
2011-12-22 05:05:24 +00:00
macallan
50d883797e add some pre-rendered anti-aliased fonts from pkgsrc:
- DejaVu Sans Mono from fonts/dejavu-ttf
- Droid Sans Mono from fonts/droid-ttf
- Free Mono from fonts/freefonts-ttf
2011-12-22 05:01:15 +00:00
macallan
011cff9259 support anti-aliased fonts in 32bit colour 2011-12-22 04:53:43 +00:00
macallan
99d1a7d487 support anti-aliased fonts ( as in, pre-rendered alpha maps ), for now only
in rasops32 although adding support in 15, 16 and 24 would be trivial.
Enabled only if the driver explicitly requests it by setting the
RI_ENABLE_ALPHA flag.
2011-12-22 04:52:45 +00:00
jakllsch
ace778b179 Transfer some static from my winter coat to more structures/functions
in this file.
2011-12-22 02:13:08 +00:00
jakllsch
f765ab4101 Fix up changes commited in kttcp.c 1.29. 2011-12-22 02:00:19 +00:00
christos
55c6b3796e don't include pcap/bpf.h 2011-12-21 22:18:43 +00:00
christos
cd3aca499d don't change the layout of the struct, it is used by fstat. (from yamt) 2011-12-21 19:27:47 +00:00
christos
64f7c0e218 PR/45730: David Holland: Avoid having 2 copies of bpf.h in /usr/include.
This adds the missing entries from libpcap to make libpcap compile with
our bpf.h.
2011-12-21 19:04:18 +00:00
christos
7abb9aefee Don't use libpcap's bpf file, but use our own:
1. include <net/dlt.h> where needed since we have the information in a separate
   file.
2. #error in pcap/bpf.h to make sure it is not being used.
3. If we don't include <pcap/bpf.h> include <net/bpf.h> instead.
4. Install symlinks instead of copies of files.
2011-12-21 19:00:27 +00:00