Alexander Motin
823efe3764
Oops, list of IDs is not sequential. Have to list all of them expoicitly.
2011-12-20 02:42:53 +00:00
Alexander Motin
3e6059772d
Cast some vendor-specific spell on VIA VT1708S codecs to:
...
- make analog input loopback work;
- get access to the mics boost controls.
Sponsored by: iXsystems, Inc.
MFC after: 1 month
2011-12-20 02:00:27 +00:00
Adrian Chadd
ddd7699151
Remove these locks - they aren't strictly needed and cause measurable
...
performance issues.
* Access to the GPIO bus is already locked by requesting
and releasing the bus - thus the lock isn't really needed
for each GPIO pin change.
* Don't lock and unlock the GPIO bus for -each- i2c access -
the i2c bus code is already doing this by calling the upper
layer callback to request/release the bus. This thus locks
the bus for the entirety of the transaction.
TODO:
* Further verify that everything is correctly requesting/
releasing the GPIO bus.
* Look at how to lock the GPIO pin configuration stuff,
potentially by locking/unlocking the bus at the gpiobus
layer.
2011-12-20 00:33:56 +00:00
Xin LI
25841e912f
Add comments in NOTES to say what viawd is.
2011-12-20 00:16:52 +00:00
Hans Petter Selasky
d63cc02d7a
Make the recently added "no_shutdown_wait" sysctl writeable.
...
Suggested by: avg @
MFC after: 3 days
2011-12-19 23:39:08 +00:00
Dimitry Andric
8a0e4ea185
In usr.sbin/yp_mkdb/yp_mkdb.c, cast some printf field width parameters
...
to int, cast time_t to intmax_t, and use the corresponding printf length
modifier.
MFC after: 1 week
2011-12-19 20:44:44 +00:00
Dimitry Andric
5eeae9a725
In usr.sbin/uhsoctl/uhsoctl.c, fix a few warnings about format strings
...
not being literals.
MFC after: 1 week
2011-12-19 20:38:26 +00:00
Dimitry Andric
5c67a2799c
Fix r228719; when you use intmax_t, you need stdint.h.
...
Pointy hat to: dim
MFC after: 1 week
2011-12-19 20:33:53 +00:00
Dimitry Andric
655353a78c
Some people pointed out long is 32-bit on some arches, while time_t is
...
64-bit, so better cast time_t to intmax_t, and use the appropriate
printf format strings.
MFC after: 1 week
2011-12-19 20:29:50 +00:00
Andriy Gapon
167057914b
ule: ensure that batch timeshare threads are scheduled fairly
...
With the previous code, if the range of priorities for timeshare batch
threads was greater than RQ_NQS, then the threads with low priorities in
the part of the range above RQ_NQS would be scheduled to the run-queues
as if they had high priorities at the beginning of the range.
In other words, threads with a nice level of +N could be scheduled as
if they had a nice level of -M.
Reported by: George Mitchell <george@m5p.com>
Reviewed by: jhb
Tested by: George Mitchell <george@m5p.com> (earlier version)
MFC after: 1 week
2011-12-19 20:01:21 +00:00
Pyun YongHyeon
7659f3c35d
Increase wait time for OP_TCPSTART command processing. It seems
...
100us is not enough to ensure prefetch unit work.
2011-12-19 19:02:36 +00:00
Pyun YongHyeon
cbecedb2c5
TCP header size is represented by number of 32bits words.
...
Fix the TCP header size calculation such that makes TSO engine
cache all header(ethernet/IP/TCP) bytes to its internal buffer.
While here, remove extra pull up for TCP payload. Unlike some
em(4) controllers, fxp(4) does not require such work around for
TSO.
The two limitations are ethernet/IP/TCP header size should be less
than or equal to the size of controller's internal buffer(80 bytes)
and these header information should be found in the first fragment
of a TSO frame.
2011-12-19 19:00:34 +00:00
John Baldwin
a7f5f7948b
Add a TASK_INITIALIZER() macro that can be used to statically
...
initialize a task structure.
Reviewed by: gj
MFC after: 2 weeks
2011-12-19 18:55:13 +00:00
Dimitry Andric
ad5b59d82c
In usr.sbin/timed, fix several issues with printf formats:
...
- Cast time_t's to long, and print them with %ld.
- Print ptrdiff_t's with %td.
- Print ssize_t's and size_t's with %zd and %zu.
- Print int32_t's with %d.
Also, replace some int variables with the more appropriate size_t.
MFC after: 1 week
2011-12-19 18:08:31 +00:00
Dimitry Andric
3803473797
In contrib/tcpdump/print-icmp6.c, fix a problem where the comparison
...
against icmp6_hdr::icmp6_type is done incorrectly. (This fix has
already been applied upstream, but we do not have the latest version of
tcpdump.)
MFC after: 1 week
2011-12-19 17:32:54 +00:00
Dimitry Andric
6130c10567
Use NO_WCAST_ALIGN for usr.bin/hastctl and usr.bin/hastd; the alignment
...
warnings in sbin/hastd/lzf.c are only emitted for i386 and amd64, and
there they can be safely ignored.
MFC after: 1 week
2011-12-19 15:46:15 +00:00
Hans Petter Selasky
5ed294aec0
Add code to wait for USB shutdown to be executed at system shutdown.
...
Add sysctl which can be used to skip this waiting.
MFC after: 3 days
2011-12-19 15:35:05 +00:00
Andriy Gapon
528bf6e40e
opensolaris compat: fix vcmn_err so that panic(9) produces a proper message
...
... instead of just a verbatim format string.
Reviewed by: pjd
MFC after: 1 week
2011-12-19 14:55:14 +00:00
Hans Petter Selasky
6bd3e53514
Add missing unlock of USB controller's lock, when
...
doing shutdown, suspend and resume.
Suggested by: avg @
MFC after: 3 days
2011-12-19 14:53:42 +00:00
Dimitry Andric
1d44b5b9f0
In usr.bin/vacation/Makefile, fix a typo in the comment about clang
...
warnings.
Spotted by: arundel
MFC after: 1 week
2011-12-19 13:38:28 +00:00
Dimitry Andric
136fb141c6
Unfortunately, clang gives warnings about sendmail code that cannot be
...
turned off yet. Since this is contrib code, and we don't really care
about the warnings, just turn make them non-fatal for now.
MFC after: 1 week
2011-12-19 13:35:44 +00:00
Gleb Smirnoff
3d6c421fab
Remove if_carp.ko. /boot/kernel should be upgraded atomically.
...
Requested by: netchild, bz
2011-12-19 12:50:12 +00:00
Bjoern A. Zeeb
2cce1b69c4
Unbreak the build after r228697 adding the { } block to make clear which
...
if the else belongs to.
2011-12-19 08:50:17 +00:00
Maxim Konovalov
d96ea877a7
o Convert IPv6 read-only stats sysctls to the read-write ones.
...
o Teach netstat(1) -z to reset these stats sysctls.
PR: bin/153206
Reviewed by: glebuis
Sponsored by: NGINX, Inc.
MFC after: 1 month
2011-12-19 05:50:34 +00:00
Maxim Konovalov
47483045bc
o Sort .Xrs.
2011-12-19 05:09:08 +00:00
Dimitry Andric
c48f7f6814
Repair breakage after r228697: since m4 now uses pow(3), it needs -lm.
...
Pointy hat to: bapt
2011-12-18 23:54:32 +00:00
Baptiste Daroussin
4fff7a14ae
Reimplement support for the ** (exponent) gnu extension, make it available thought the -g (mimic gnu) option
...
Reviewed by: cognet
Approved by: cognet
Discussed with: espie@OpenBSD.org (upstream)
2011-12-18 22:04:55 +00:00
Pawel Jakub Dawidek
8a605b3f64
Use lex's standard way of not generating unused function.
...
Inspired by: r228555
MFC after: 1 week
2011-12-18 20:41:58 +00:00
Pawel Jakub Dawidek
b6afd24f2b
Don't use function name as format string.
...
Detected by: clang
MFC after: 1 week
2011-12-18 20:40:19 +00:00
Marius Strobl
e0a4047562
Fix compilation on sparc64 by actually supplying the bus_dma_tag_t member
...
of the rx_ring to bus_dmamap_sync(9). Given that netmap code tries to
obtain the bus addresses of netmap buffers via vtophys(9) instead of using
bus_dma(9) it currently has zero chance of actually working on sparc64
though (and for that matter f.e. also not with MACs limited to 32-bit DMA
on x86 machines with more than 4GB of RAM).
2011-12-18 17:48:54 +00:00
Dimitry Andric
cf2cbe3458
Revert r228603, and add the workaround to sbin/fsdb/Makefile instead.
...
MFC after: 1 week
2011-12-18 17:42:26 +00:00
Dag-Erling Smørgrav
7f106882fe
Upgrade to OpenPAM Lycopsida.
2011-12-18 17:22:45 +00:00
Dag-Erling Smørgrav
432a3b2760
Vendor import of OpenPAM Lycopsida.
2011-12-18 17:08:40 +00:00
Nathan Whitehorn
263b790117
Support infrastructure for X11 on PS3.
...
Submitted by: geoffrey dot levand at mail dot ru
MFC after: 1 week
2011-12-18 16:53:21 +00:00
Nathan Whitehorn
795c0232aa
Add version header to output file.
2011-12-18 16:53:03 +00:00
Sergey Kandaurov
148ddfed15
Use FOREACH_PROC_IN_SYSTEM instead of using its unrolled form.
...
Reviewed by: kib
2011-12-18 15:36:21 +00:00
Pawel Jakub Dawidek
bb265163b2
From time to time people report space map corruption resulting in panic
...
(ss == NULL) on pool import. I had such a panic recently. With current version
of ZFS it is still possible to import the pool in readonly mode and backup
all the data, but in case it is impossible for some reason add tunable
vfs.zfs.space_map_last_hope, which when set to '1' will tell ZFS to remove
colliding range and retry. This seems to have worked for me, but I consider
it highly risky to use.
MFC after: 1 week
2011-12-18 12:27:45 +00:00
Pawel Jakub Dawidek
efe17e5a28
Implement replying of ACLs updates. ACL changes should go to ZIL only
...
if the 'sync' property is set to 'always', so replying them is not common.
MFC after: 1 month
2011-12-18 12:19:03 +00:00
Dimitry Andric
b134560923
Forgot to add usr.sbin/sade/label.c in the previous commit.
...
MFC after: 1 week
2011-12-18 01:14:38 +00:00
Dimitry Andric
7b910e702a
In usr.sbin/sade/install.c and usr.sbin/sade/label.c, fix a few warnings
...
about format strings not being literals.
MFC after: 1 week
2011-12-18 01:13:21 +00:00
Dimitry Andric
4c14050c9d
In usr.sbin/sa/db.c, avoid warnings about assigning two const char
...
arrays to non-const void pointers, by casting away const explicitly.
MFC after: 1 week
2011-12-18 01:08:25 +00:00
Dimitry Andric
0af4e80ae5
In usr.sbin/rpc.ypupdated/yp_dbupdate.c, since intmax_t is signed, just
...
like time_t, better use %jd instead of %ju. Strangely enough, neither
gcc, clang nor gcc 4.6 warn about this discrepancy...
MFC after: 1 week
2011-12-18 00:55:46 +00:00
Dimitry Andric
ae1d153674
In usr.sbin/rpc.ypupdated/yp_dbupdate.c, include stdint.h, so intmax_t
...
is known, otherwise it won't build.
Pointy hat to: dim
MFC after: 1 week
2011-12-18 00:44:59 +00:00
Dimitry Andric
7027737f5a
In usr.sbin/rpc.ypupdated/yp_dbupdate.c, use the appropriate printf
...
length modifier for time_t (after casting it to intmax_t).
MFC after: 1 week
2011-12-18 00:40:30 +00:00
Dimitry Andric
c09186a2bb
Disable another clang warning (-Wempty-body) when WARNS <= 2.
...
MFC after: 1 week
2011-12-18 00:34:42 +00:00
Dimitry Andric
ac7472adb6
Disable yet another clang warning (-Wconversion) when WARNS <= 3.
...
MFC after: 1 week
2011-12-18 00:24:11 +00:00
Dimitry Andric
2214781145
In usr.sbin/route6d/route6d.c, use the correct printf length modifier
...
for an ssize_t.
MFC after: 1 week
2011-12-18 00:03:03 +00:00
Dimitry Andric
5893527d84
In usr.sbin/pw/pw_user.c, use the correct printf length modifier for a
...
ptrdiff_t.
MFC after: 1 week
2011-12-17 23:46:47 +00:00
Dimitry Andric
6d683f9dfa
In contrib/pnpinfo/pnpinfo.c, remove an extraneous parameter from the
...
call to isolation_protocol().
MFC after: 1 week
2011-12-17 23:43:40 +00:00
Dimitry Andric
e2d0cd59c3
In usr.sbin/pmccontrol/pmccontrol.c, fix a few warnings about format
...
strings not being literals.
MFC after: 1 week
2011-12-17 23:39:13 +00:00