christos
dc074e0229
more const
...
check if we support SHA384 before using
(brooks)
2012-10-05 00:41:24 +00:00
christos
17d9400e73
remove dup extern (brooks)
2012-10-05 00:40:51 +00:00
dsl
9fb5a66c05
Remove references to VM86 from the amd64 kernel configs.
...
VM86 mode isn't supported while in long mode.
2012-10-04 21:23:45 +00:00
dholland
1ebcbda526
Improve previous change with better wording.
2012-10-04 19:28:36 +00:00
macallan
d55e837f75
defflag GLYPHCACHE_DEBUG
2012-10-04 19:09:20 +00:00
msaitoh
05a67a38f2
Fix udpcsum-rx bug on fragmented case this time.
...
- Fix the usage of a local variable for csum_flags.
- It seemd that sometimes MVGBE_RX_L4_CHECKSUM_OK bit were set to 0
even if the checksum is correct and the packet was not fragmented.
So we don't set M_CSUM_TCP_UDP_BAD even if csum bit is 0.
2012-10-04 14:21:00 +00:00
macallan
b52a0c0509
support underlined characters
...
while there, make sure the glyph cache doesn't exceed 2048 lines since that's
the drawing engine's limit
2012-10-04 10:35:54 +00:00
macallan
8d95024a62
support underlined characters
2012-10-04 10:29:24 +00:00
macallan
f952894398
allow caching of glyphs with attributes other than the default
...
while there, also add support for underlined characters
2012-10-04 10:26:32 +00:00
macallan
5e521e6304
don't call allocattr() for the default attribute
2012-10-04 10:22:45 +00:00
matt
8a5c99fdc5
Ethernet driver for BCM53XXX (not quite working).
2012-10-04 00:14:24 +00:00
uwe
a855fb9e85
Fix fallout from 1.129 that converted sou::so_foo from unions to
...
pointers but missed (char *)&soup->so_foo => (char *)soup->so_foo in
mask_addr(). It worked by luck - unless it didn't: due to pointer
numerology on amd64 route add -net ClassC without explicit /24 prefix
length specification would result into /16 destination instead of /24.
2012-10-04 00:01:48 +00:00
christos
a24d023052
remove diagnostic printfs to make this compile again.
2012-10-03 23:55:22 +00:00
jakllsch
8b020b7eee
We don't actually want to round the number of elements in the bitmap
...
down. Fixes a self-inflicted buffer overrun.
(This was detected by chance that the top of the bitmap coincided with
a page boundary.)
2012-10-03 23:32:43 +00:00
christos
fda8fa0063
- add more debugging
...
- don't return memory we did not allocate, which the caller will then free!
2012-10-03 22:28:20 +00:00
gsutre
544994c48c
Enable GLX DRI2 support.
2012-10-03 21:50:14 +00:00
skrll
b253d19ad2
Add a bunch of pseudodevices and LOCKDEBUG. All commented out.
2012-10-03 20:54:23 +00:00
wiz
620c663aea
Bump date for previous.
2012-10-03 19:50:43 +00:00
wiz
4f7e551cb8
- improve wording and overall program description (notably for `-f');
...
- improve macro usage;
- bump date.
From Bug Hunting.
2012-10-03 19:50:11 +00:00
wiz
a04ce0cefc
- correct `usage' message;
...
- improve wording.
From Bug Hunting.
2012-10-03 19:50:06 +00:00
riastradh
334a028dd6
Add a remarkably percipient fortune cookie.
2012-10-03 19:41:46 +00:00
wiz
f8c0e3497a
- Correct macro usage;
...
- improve wording, including creating more consistency therein.
From Bug Hunting.
2012-10-03 19:37:36 +00:00
wiz
547319c1ee
- Improve wording;
...
- remove superfluous `.Pp' macro (fixes mandoc(1) warning).
From Bug Hunting.
2012-10-03 19:36:11 +00:00
wiz
fde0458761
- In the example for `-f', reference a directory that is actually
...
available in a default installation (/usr/src isn't);
- put together two lines which belong to the same sentence;
- remove a spurious space character;
- remove unneeded consecutive argument for `.Nm' macro.
From Bug Hunting.
2012-10-03 19:35:08 +00:00
wiz
1834bf7f98
Improve wording.
...
From Bug Hunting.
2012-10-03 19:28:44 +00:00
wiz
4f36cb9e44
- Sort order of options mentioned in text;
...
- improve wording;
- remove unneeded macros (fixes mandoc(1) warnings);
- in the `EXAMPLES' section, for `-d', mention the use of `-U'
besides that of `-u' (as the former is a variant on the latter).
From Bug Hunting.
2012-10-03 19:27:48 +00:00
wiz
c01be871ae
Update 'rcs' package entry.
...
From Bug Hunting.
2012-10-03 19:19:09 +00:00
matt
87a6bdd6f3
Add code to init the SRAB (the switch robot). Don't configure eth3 by default.
2012-10-03 19:18:40 +00:00
wiz
c56495817a
- Capitalization fixes (`OpenSSL'', not
`openssl'');
...
- change single to double space in between sentences;
- remove trailing white space.
From Bug Hunting.
2012-10-03 19:17:00 +00:00
riastradh
2a2bf69386
Fix formatting of Churchill quote on declarations of war.
2012-10-03 19:04:55 +00:00
dsl
4911d2e6ef
Remove all references to KVM86.
...
It was only ever used by APMBIOS - and then only if an option was selected.
Probably didn't work well at all!
2012-10-03 18:58:30 +00:00
riastradh
5a0c6d85d2
Use db_read_value to read the trapframe fields in db_nextframe.
...
Fixes SIGSEGV on bt in crash(8) when the stack trace ends in syscall,
and probably other problems as well.
ok christos
2012-10-03 17:43:22 +00:00
chs
5aed578101
as a workaround for PR 47016, call ioapic_reenable() at the end of
...
ACPI interrupt routing to fix the settings for the SCI interrupt.
the problem is that after my recent changes, the SCI handler is
installed before the MADT info is parsed, so we don't know what
polarity it should have. the real fix for this will be to rearrange
the ACPI initialization so that everything is done in a more sensible
order, but that will take some more time.
2012-10-03 17:04:25 +00:00
chs
5a71f29b5e
defer evcnt attachment correctly.
2012-10-03 16:51:44 +00:00
skrll
ad1491c110
Use armreg_ttbr_read instead of local version. No code change.
2012-10-03 13:13:38 +00:00
skrll
99a398814b
Remove one set of _[AS] defines. No functional change.
2012-10-03 13:06:06 +00:00
skrll
bfab5757c2
Remove some unnecessary headers.
2012-10-03 13:01:27 +00:00
skrll
c6e1291175
Update copyright
2012-10-03 13:00:47 +00:00
mlelstv
b7abe5ff3b
ext_ops does not change during the life cycle and can be fetched without
...
the mutex held. This avoids confusion in the compiler about an uninitialized
variable ext_ops.
ok rmind@
2012-10-03 12:24:56 +00:00
mlelstv
582d3a41a2
Add sanity check to sysctl_kern_maxvnodes.
2012-10-03 07:22:59 +00:00
mlelstv
c7b0abd4dd
Use getdisksize() to find out geometry, fetch only other magic values
...
from disklabel.
2012-10-03 07:20:50 +00:00
mlelstv
ff64c602d8
Only initialize when we are the first opener.
2012-10-03 07:16:49 +00:00
mlelstv
ec54e2b865
use media_table instead of replicating code
2012-10-03 07:08:58 +00:00
mlelstv
fb998a2dbc
Attach to PMF.
2012-10-03 07:07:04 +00:00
mlelstv
aac856dfae
No longer determine availability of ISO and UDF partitions, we default
...
to allow access to both. Only use a found ISO header to access the
correct session.
2012-10-03 07:05:51 +00:00
mlelstv
b01953ad5a
regen
2012-10-03 06:58:03 +00:00
mlelstv
7e7c7456b5
two more FTDI USB->serial adapters
2012-10-03 06:57:36 +00:00
christos
b1425120c0
move from common/pmap/tlb -> uvm/pmap
2012-10-03 00:51:45 +00:00
christos
c3ed0c68a2
common is no more.
2012-10-02 23:55:21 +00:00
christos
b2118b5ea1
move common/bus_dma/ -> dev/bus_dma/
2012-10-02 23:54:51 +00:00