186895 Commits

Author SHA1 Message Date
jdc
1da1a88e96 Add cas(4) manual page. 2010-01-07 09:23:54 +00:00
jdc
ab6c3487ea Manual page for cas (Sun Cassini/Cassini+ GigaSwift) Ethernet). 2010-01-07 09:20:45 +00:00
jdc
28537da09d Driver for Sun Cassini/Cassini+ (GigaSwift) Ethernet (also known as
National Semiconductor Saturn).
Based on the OpenBSD driver written by Mark Kettenis:
  detach support added
  MAC address lookup modified (only tested on sparc64)

Tested on single GigaSwift (UTP and MMF) and quad GigaSwift PCI cards.
2010-01-07 09:19:55 +00:00
skrll
c6ed7679c0 Typo in comment. 2010-01-07 07:35:35 +00:00
christos
808212fb9d missing errno.h 2010-01-07 04:21:28 +00:00
christos
36cd9355e9 make this compile again. 2010-01-07 01:39:56 +00:00
martin
c67e811ad6 Add the u3ginit driver to all configs which have the u3g driver 2010-01-07 00:18:47 +00:00
martin
ccc11a5461 Split the u3g driver into two parts: u3ginit attaches to those devices
that only come as a umass device in the default configuration and
forces them to reinitialize in 3D mode and detach.
The u3g part attaches to individual interfaces for the 3G functionality,
leaving the umass interface(s) for that driver.
With this change I can use the MMC card in my Huawey stick (as well as
the integrated windows driver CD, which of course is pretty useless) and
the 3G modem at the same time.
Fixes PR 42577.
Code contributed anonymously, minor tweaks (and all bugs) by me.
2010-01-07 00:15:20 +00:00
martin
015458e484 Optimize for higher speeds, e.g. when used as part of a 3G modem.
Contributed anonymously.
2010-01-06 20:37:56 +00:00
martin
a24c4f307b Some usb devices come with an internal emulated umass CD drive (containing
windows drivers). I have such a device that has 0 features - avoid wrappig
features_len to a very big unsiged 32bit number in this case.
2010-01-06 20:16:57 +00:00
skrll
2f016ded44 libpmc_g is only available on i386 and arm. Fixes MKDEBUGLIB builds on
other platforms.
2010-01-06 19:46:43 +00:00
christos
87e82597b6 PR/42568: Pedro F. Giffuni: Better signal handling from OpenBSD, but simplified. 2010-01-06 18:12:37 +00:00
skrll
1b91b7e11c Fix MKDEBUG=yes sets lists for hp700. 2010-01-06 16:19:07 +00:00
phx
7377320537 Jump through the PLT in PIC mode to fix the DT_TEXTREL warning on creating
the shared object.
2010-01-06 14:10:57 +00:00
skrll
c982c69974 Update 64bit arg handling to use the flags in the syscall table.
Only do trace_enter/trace_exit if we're tracing.
2010-01-06 07:42:58 +00:00
skrll
8fb5f5ef34 curlwp is never NULL now. Sprinkle KASSERT just in case. 2010-01-06 07:38:49 +00:00
mbalmer
40406154b1 Fix typo in comment. 2010-01-06 06:30:37 +00:00
mrg
339e9e62d0 fix an incomplete comment. 2010-01-06 06:15:09 +00:00
mrg
82d26ec658 move the guts of pci_intr_map() into pci_machdep.c, and move the schizo
ign addition into a hook.  also, don't double shift the ign in set_intr.

tested on U60 and SB2500.
2010-01-06 05:55:01 +00:00
dyoung
3fec0e6fa3 Call device_lookup() from device_lookup_private() instead of
duplicating code.

Per suggestions by rmind@:

Simplify some code that used "empty statements," ";".

Don't collect garbage in device_lookup{,_private}(), since they
are called in interrupt context from certain drivers.

Make config_collect_garbage() KASSERT() that it does not run in
interrupt or software-interrupt context.
2010-01-05 22:42:16 +00:00
macallan
f1eae1b88d fix a typo - we need to check classipl vs. IPL_VM, not the SBus interrupt
level
2010-01-05 21:38:50 +00:00
dyoung
6bcc29ee08 Fix MKBINUTILS=no builds by leaving out xldscripts. 2010-01-05 20:49:04 +00:00
he
3bb1e78986 Bump the miniroot size from 8m to 9m, so that the contents fits again.
OK'ed by mrg@
2010-01-05 18:36:16 +00:00
jakllsch
ec1d44ba55 Fix copy-paste-o. Per the HID spec, Global Item Tag 0b001101nn is
Physical Minimum, not a alias for Physical Maximum.
2010-01-05 17:57:06 +00:00
jruoho
50af5a5ff5 Put back the evaluation of the return value from mpacpi_get_bbn().
Break reported by njoly@. Thanks!
2010-01-05 17:23:18 +00:00
tsutsui
d3724ba41f Add necessary byteswap ops for tools disklabel(8) used with -F option
(treating a target disk as a regular file and suppressing ioctl(2)s)
on reading/writing disklabel in a target file.
This allows cross build enviroment creating bootable disk images
for targets in different endian.
No functional changes to native (non-tools) disklabel(8) command.

Closes PR toolchain/42357.
2010-01-05 15:45:26 +00:00
skrll
7fe4e16803 Regen. 2010-01-05 15:25:32 +00:00
skrll
e359b65038 Check for dev_t and time_t arguments and mark them as 64bit. 2010-01-05 15:23:32 +00:00
jruoho
5bb528f36b Use acpi_eval_set_integer() to simplify code. No functional change intended.
ok pgoyette@, jmcneill@
2010-01-05 13:57:18 +00:00
jruoho
57bb616085 Fix a memory leak/corruption by commenting out the evaluation of the _PSL
control method. If it is needed in the future, the output buffer must be
freed after use.

ok pgoyette@, jmcneill@
2010-01-05 13:47:52 +00:00
jruoho
0398d5ad8e Use acpi_eval_struct() to simplify code.
ok pgoyette@, jmcneill@
2010-01-05 13:39:49 +00:00
jruoho
6538aaf890 Fix several possible memory leaks in mpacpi_derive_bus().
ok pgoyette@, jmcneill@
2010-01-05 13:32:49 +00:00
mbalmer
982581e04d Remove extra semicolons. 2010-01-05 13:30:10 +00:00
mbalmer
93f06d875c Remove extra semicolon. 2010-01-05 13:22:40 +00:00
mbalmer
2603a89351 One semicolon only (;; -> ;) 2010-01-05 13:20:29 +00:00
mbalmer
bd2482b598 One semicolon is enough. 2010-01-05 13:14:55 +00:00
msaitoh
37fc7a8496 Fix the checking of jumbo frame function though I don't know whether
the function wokrs or not...

 Remove the extra macro definition for the offset 0x1a in EEPROM.
2010-01-05 10:02:01 +00:00
msaitoh
0da37da46d Fix the length of the delay() in wm_gmii_reset(). It fixed the problem that
sometimes the driver misunderstood PHYs in mii_attach(). It was reported
by MATSUI Yoshihiro. We observed it on ICH9.
2010-01-05 09:31:21 +00:00
macallan
7190e17c0e fix off by one in zx_copyrect() 2010-01-05 05:04:38 +00:00
macallan
647d0c5994 fix off by one error in zx_fillrect()
while there, use vcons_replay_msgbuf()
2010-01-05 04:17:49 +00:00
wiz
1f8dff0603 Sort NAME section and removing trailing dot; remove duplicate RCS Id. 2010-01-04 23:06:34 +00:00
pooka
304a850cb9 fix typography 2010-01-04 22:04:50 +00:00
haad
9c52ca7c82 Revert my unattended change to kadmind.html page 2010-01-04 20:18:02 +00:00
plunky
1e2b8c6e0e prevent local socket address from being changed after socket is
in use (connect or listen)
2010-01-04 19:20:05 +00:00
dyoung
e3420c6750 Add a manual page for producer/consumer queues, pcq(9), that I derived
from some documentation written by Matt Thomas.
2010-01-04 18:00:26 +00:00
sjg
03c533138a We need to have set curdir before calling Dir_FindHereOrAbove().
We can call getcwd again if -C is used.
2010-01-04 17:05:25 +00:00
haad
344f97a451 Add device-mapper manual page to build and add it to apropriate lists. 2010-01-04 16:57:48 +00:00
uebayasi
80d41370e7 Use CTASSERT() for constant only assertions. 2010-01-04 16:01:42 +00:00
mbalmer
43f131c4e8 Only use an auto-determined interface if it is the only one in the system
that is up and running.  This change prevents wake(8) from picking an
arbitrary interface (which is possibly the wrong one).
2010-01-04 11:34:39 +00:00
jruoho
4979a58f9d Update the copyright. 2010-01-04 10:06:53 +00:00