summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-06-06- Recognize the 8110SCe 8169 revision in re(4)Peter Valchev
- Rename the existing 8110SC revision to 8110SCd to be consistent info from the linux driver via Brad
2007-06-06Do not dereference a garbage pointer in hci_acl_send()Uwe Stuehler
testing ckuethe
2007-06-06fix firmware number in description (the package name was ok.)Damien Bergamini
2007-06-06make sensors framework usage consistent with other drivers; ok damien@Constantine A. Murenin
2007-06-06syncDamien Bergamini
2007-06-06Remove incorrect entry for Intel PRO/Wireless 3945ABG.Damien Bergamini
Fix entry for 4965AGN (upcoming iwn(4) driver.) The name is "Intel Wireless Wi-Fi Link 4965AGN" and not "Intel PRO/Wireless 4965AGN".
2007-06-06now that all partition size/offsets are potentially 64-bit, change theTheo de Raadt
type of all variables to daddr64_t. this includes the APIs for XXsize() and XXdump(), all range checks inside bio drivers, internal variables for disklabel handling, and even uvm's swap offsets. re-read numerous times by otto, miod, krw, thib to look for errors
2007-06-06oopsTheo de Raadt
2007-06-06setdisklabel() openmask is now a u_intTheo de Raadt
2007-06-06a fair sprinking of knf, code movement, and sometimes character-by-characterTheo de Raadt
accuracy so that the variious disksubr.c's can be compared easier. setdisklabel() starts taking an int for openmask. ok krw, and read by quite a few other people
2007-06-06even more problems with disk size consistancy checksTheo de Raadt
2007-06-06do it only for older sets.Marc Espie
2007-06-06finish moving the size computations out of validate_plist.Marc Espie
2007-06-06separate the size computation from other operations in `prepare_for_addition'Marc Espie
`prepare_for_deletion' -> move that to Vstat, as it is common code. Do the splitting of libraries through a deep copy and shallow copy, so that we keep any State information related to libraries (like special group/owners).
2007-06-06don;t try to handle obsolete protocols, print functions so cosmetics onlyHenning Brauer
ok otto ray
2007-06-06remove an unused typedef.Thordur I. Bjornsson
ok pedro@
2007-06-06fix oups, mlist@scapa.dnsalias.netHenning Brauer
2007-06-06tweak split_libs slightly for further changes: make it return the oldMarc Espie
packing-list, and the new, instead of doing `in-place' edition of the plist contents.
2007-06-06recognize and handle https.Marc Espie
2007-06-06vlan interfaces do not allow the parent interface and the vlan number to beHenning Brauer
reconfigured after they are set. so they bail out when you try to. so when you re-run netstart on a machine with vlans, it bails out with ifconfig: SIOCSETVLAN: Device busy and IP changes are not done. make vlan_config() notice when both parent interface and vlan number stay the same and just return success without doing anything in that case. allows the IP config thereafter to happen. ok markus jason
2007-06-06tweak how copies happen: rename make_copy into make_shallow_copy,Marc Espie
make_deep_copy. tweak keep_old_files so that we set the pkgname later, when it won't cause any error to have duplicates in there.
2007-06-06augment reporting of bad problems so that it works with system libs.Marc Espie
reverse bogus minor check as well
2007-06-06bye byeHenning Brauer
most of the IPX removal work done @ calgary airport
2007-06-06remove remaining IPX hooks. all inside #ifdef IPX, so no actual changeHenning Brauer
2007-06-06put IPX in the unsupported boatHenning Brauer
2007-06-06remove ifdef'd out ipx-in-ip registrationHenning Brauer
2007-06-06Don't promote MNT_WAIT to MNT_NOWAIT when syncing the device vnode of aPedro Martelletto
mounted softdep file system, okay mickey@ beck@ art@
2007-06-06remove never used #ifdef IPX_NOTYET codeHenning Brauer
2007-06-06do not include ipx headers (were not needed in the first place)Henning Brauer
2007-06-06reverse logic of if_exists so that if_exists(interface) is true ifHenning Brauer
interface exists and !if_exists(interface) is when it doesn't
2007-06-06work around import limitationsNiall O'Higgins
2007-06-06Shrink dmesg output. Tweaked version of a diff from tedu@Jonathan Gray
ok by a bunch of people
2007-06-06syncTheo de Raadt
2007-06-06Don't double xstrdup.Ray Lai
From mickey. ``i made a booboo'' joris, OK niallo and xsa.
2007-06-06Unlink files with multiple links when -P flag is specified insteadRay Lai
of just warning and skipping the file. OK millert and jmc.
2007-06-05Remove the comment "Static function protoypes". Static is gone in USB.Marc Balmer
no binary change.
2007-06-05allow accessing all older values (make a semantic distinction), so thatMarc Espie
adjust_dependencies gets access to all. This fixes some bogus replacements.
2007-06-05reuse the compute_closure code.Marc Espie
2007-06-05remove support for ipx. okay claudio@Kurt Miller
2007-06-05Major wpi(4) update:Damien Bergamini
1/ Update the driver to use the new firmware images from Intel (2.14.3.) 2/ Read the list of supported channels from the EEPROM instead of having it hard-coded in the driver. 3/ Limit output power to what is specified in EEPROM. 4/ Decrease output power for highest OFDM rates to reduce distortion. 5/ Automatically adjust output power to temperature changes for increased throughput and range. 6/ Attach the adapter's onboard thermal sensor to the sensor framework. 7/ Replace 'magic' fields in structures with their correct definitions. NOTE1: you must upgrade your wpi-firmware package to rev 2.14.3 or the driver will stop working. NOTE2: if you are using a channel not allowed by the regulatory domain of your adapter, you will no longer be able to associate.
2007-06-05syncTheo de Raadt
2007-06-05_FD_LOCK/UNLOCK() is libpthread specific and not needed for librthread, soKurt Miller
isolate its usage to libpthread only and replace with generic non-static mutex support in the one place it is needed: - remove _FD_LOCK/UNLOCK from lseek and ftruncate in libc and make the functions weak so that libpthread can override with its own new versions that do the locking. - remove _thread_fd_lock/unlock() weak functions from libc and adjust libpthread for the change. - add generic _thread_mutex_lock/unlock/destroy() weak functions in libc to support non-static mutexes in libc and add libpthread and librthread implementations for them. libc can utilize non-static mutexes via the new _MUTEX_LOCK/UNLOCK/DESTROY() macros. Actually these new macros can support both static and non-static mutexes but currently only using them for non-static. - make opendir/closedir/readdir/readdir_r/seekdir/telldir() thread-safe for both thread libraries by using a non-static mutex in the struct _dirdesc (typedef DIR), utilizing it in the *dir functions and remove remaining and incorrect _FD_LOCK/UNLOCK() use in libc. - add comments to both thread libraries to indicate libc depends on the current implementation of static mutex initialization. suggested by marc@ - major bump libc and libpthread due to function removal, structure change and weak symbol conversions. okay marc@, tedu@
2007-06-05remove ipx-related stuff. objections nobody. major bump by kurt in a fewHenning Brauer
2007-06-05Use phys_map, not kernel_map in v{,un}mapbuf. ok mickeyMiod Vallat
2007-06-05typosKurt Miller
2007-06-05Shuffle calculation of physical block so that bounds checking is not off byMarco Peereboom
48 blocks (metadata + metdata offset). Found by drahn. Fix panic message while in the same area. Help from otto who wrote a diff that worked around the issue. ok deraadt
2007-06-05Remove the "Static" function declaration. It is defined to beMarc Balmer
empty and confuses the source code reader. As discussed with dlg and jsg.
2007-06-05Remove the "Static" declaration of many functions. It was defined to be emptyMarc Balmer
and it was not consistently used. It was confusing as it suggested these functions were static, which they were not. discussed with dlg and jsg, ok jsg.
2007-06-05Switch to rwlock(9)Jonathan Gray
ok grange@
2007-06-05IPX is about to go away, remove commented out IPX options in GENERIC andHenning Brauer
ipx related files (doesn't compile anyway)