141606 Commits

Author SHA1 Message Date
riz
f4ed9745aa Match all model numbers with both Cicada OUIs; this allows the proper PHY to
attach on my ZyXEL GN650-T.
2005-12-01 04:59:53 +00:00
rpaulo
fe7fedbe4c PR 32198: bpf_validate() needs to do more checks, from Otto Moerbeek/OpenBSD
via Guy Harris.
Problems like out-of-bounds read/write in filter machine operations
were fixed.
2005-11-30 23:14:38 +00:00
rpaulo
5a418776bf More KNF. C99 uintXX_t types. 2005-11-30 22:40:59 +00:00
dsl
3b81c53b36 It seems that make doesn't like testing empty() on undefined variables.
Also objdump DTRT when asked to update a file, so no need to do a mv ourselves.
2005-11-30 21:50:47 +00:00
wiz
3d67954e00 Fix typo reported by adam@. 2005-11-30 18:31:45 +00:00
rpaulo
940d1d8665 Replace u_intXX_t by their C99 counterparts. 2005-11-30 16:47:58 +00:00
yamt
09073ec514 fix bread prototype. reminded by adam at albedo.art.pl 2005-11-30 16:01:26 +00:00
rpaulo
33ea9f9f29 Fix typo in comment found by Guy Harris (PR 32198). 2005-11-30 12:54:42 +00:00
rpaulo
6d95f3bed8 KNF. ANSYfy. de-P(). 2005-11-30 12:52:23 +00:00
rpaulo
462d39494a Remove the debugging printf left in linux_sys_getrlimit(). 2005-11-30 11:36:22 +00:00
martin
12940193e8 Fix warns=4 via __UNCONST() 2005-11-30 09:55:14 +00:00
martin
34fb53a2f7 Fix warns=4 (via __UNCONST()) 2005-11-30 09:35:58 +00:00
yamt
51a339dd4b revert rev.1.111 as it isn't necessary or correct.
- currently no one in tree has a problem with zero b_lblkno, afaik.
- this buf is used for "devvp", so it doesn't make sense to
  use lbn in the "vp".
2005-11-30 03:45:16 +00:00
reinoud
b91433e0fb Learn genfs that (struct buf *)->b_lblkno allways need to point to the
logical block number of the file instead of allways zero.
2005-11-30 01:46:06 +00:00
dyoung
5138e74947 Fix a bug in cd9660_sort_nodes, which tried to insert `next' before
`node' on a tail-queue, when `node' wasn't on the tail-queue.
Sometimes this led to a segfault.  Insert before `cn', since that
is the intention.  Closes PR 32194. Thanks, Jeff Rizzo, for reporting
this bug.
2005-11-30 00:26:11 +00:00
yamt
b09859311d add files i forgot to add when merging yamt-readahead branch. 2005-11-29 23:37:59 +00:00
yamt
af39e89ac9 terminate yamt-readahead branch. 2005-11-29 23:08:31 +00:00
yamt
0c2ecd688d add posix_fadvise. 2005-11-29 23:06:45 +00:00
yamt
d3bf8145af regen to revert the previous. 2005-11-29 23:02:22 +00:00
yamt
7af60d1ad1 regen (after remove -kk) 2005-11-29 23:01:19 +00:00
yamt
83427523dc regen. 2005-11-29 22:54:08 +00:00
yamt
ed8da1a81e bump to 3.99.13; yamt-readahead merge. 2005-11-29 22:52:34 +00:00
yamt
221616873d merge yamt-readahead branch. 2005-11-29 22:52:02 +00:00
jdolecek
a2e3927e39 undo linux_sys_exit_group() change _again_ - please do not commit known
broken code
2005-11-29 22:31:59 +00:00
yamt
468cb2ca84 yamt-readahead: new base. 2005-11-29 21:59:37 +00:00
christos
c77312c21b set the query source address to 53; with this setup, the vanilla config
file will work in most situations.
2005-11-29 21:08:13 +00:00
christos
6491f15ca3 fix migration problems:
1. missing slash created namedb127 files in the dest dir.
2. /etc/named.conf was not getting migrated.
2005-11-29 21:07:25 +00:00
christos
387331c600 fix warns=4 2005-11-29 18:48:02 +00:00
manu
35923ac2fc Threads should not send a signal on exit. 2005-11-29 16:24:41 +00:00
yamt
52f0a62851 read-ahead statistics. 2005-11-29 15:45:28 +00:00
skrll
77d152992d Really resolve a conflict. 2005-11-29 15:31:41 +00:00
rpaulo
ff67bb3168 Add support for software controlled LEDs as found on some
boards. Currently, only the associated LED is being used because
that's the only LED my card has. The other two LEDs (OFDM and
activity) can later be set by someone, easily, who owns some board
with that LEDs.

Reviewed by Nick Hudson.
2005-11-29 13:57:00 +00:00
tsutsui
d31aa5f6ce Use PAGE_MASK macro instead of (PAGE_SIZE - 1). 2005-11-29 13:38:07 +00:00
christos
c341912e62 cleanup casts and KNF. 2005-11-29 13:30:49 +00:00
dbj
5a25538485 fix byteswap of log revision structure check, improve error printout 2005-11-29 08:47:22 +00:00
dbj
1aeda8c1bc add newline termination on error message 2005-11-29 08:06:13 +00:00
christos
1f2f080275 sprinkle __UNCONST 2005-11-29 03:12:58 +00:00
christos
b8097652d6 sprinkle const 2005-11-29 03:12:16 +00:00
christos
03256c6e55 WARNS=4 2005-11-29 03:11:58 +00:00
dsl
3a2bad7a99 Include the size we are trying to create in the 'partition to small'
error message.
2005-11-28 22:35:06 +00:00
dan
3a01b7a8ba take into account memory used for file cache pages, and wired pages,
when calculating potential free space
2005-11-28 22:28:36 +00:00
dan
cbba09ed4d simplify calculation of free swap space using uvm-exported statistics,
with thanks to yamt@ for useful hints.
2005-11-28 22:06:20 +00:00
bouyer
2ac6595656 Don't call alloc_scb() (which can call bus_dmamem_alloc/map) from
ADAPTER_REQ_RUN_XFER context (which can be interrupt context), defer this
to the ADAPTER_REQ_GROW_RESOURCES callback.
Fix a panic in uvm reported by John R. Shannon on port-xen; patch tested on
ahc by me and on ahd by John.
2005-11-28 21:03:19 +00:00
wiz
de29fc3303 Sort SEE ALSO. Fix typo. 2005-11-28 20:05:49 +00:00
augustss
af35e68362 Add a {UQ_ASSUME_CM_OVER_DATA quirk for Siemens AG Wireless Modules MC75.
From kern/32180 from Brad du Plessis bradd@cat.co.za
2005-11-28 19:37:18 +00:00
augustss
953d857bcb Regen. 2005-11-28 19:32:29 +00:00
augustss
8ebe76f3d7 Add Siemens AG Wireless Modules MC75. 2005-11-28 19:32:07 +00:00
christos
cb9321f06d use intptr_t not U_LONG to cast from a pointer to an int. 2005-11-28 19:08:30 +00:00
christos
bfae00e6c7 use explicitly sized types for U_LLONG U_LONG and LONG; otherwise bn
breaks on 64 bit platforms. The "LONG" openssl wants is really a 32 bit int.
2005-11-28 19:07:42 +00:00
rpaulo
8935d3bf0f PR 32178: Nicolas Joly: VT8233 AC'97 Audio revision 0x10 small display
fix. I just changed the comment a bit.
2005-11-28 19:00:49 +00:00