summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Add missing const.marius2009-03-181-5/+5
|
* 1. Update for new -F option from r189992.dougb2009-03-181-22/+42
| | | | | | | | | | | 2. Sort the command line options to match how they are displayed in usage() 3. Change references to cvs to the more generic "version control system" and remove the .Xr for cvs 4. Consistently use ".Op Fl" to refer to command line options in the text. 5. Only use the apostrophe to indicate possession. 6. Add FREEBSD_ID (-F) to the list of variables in the example rc, and change the DIFF_OPTIONS example to -Bb since -F now covers it.
* Add a new -F option to automatically install files that differdougb2009-03-181-2/+19
| | | | only by version control Id strings
* Use plural in a comment. No functional change.rpaulo2009-03-181-1/+1
|
* Reference exca.imp2009-03-181-1/+3
|
* rate limit printfs for invalid tdma ie contents; probably want this tosam2009-03-182-7/+12
| | | | be less than 1/sec
* Minor cleanups of tdma protocol handling:sam2009-03-186-64/+121
| | | | | | | | | | | o break out version-related code to simplify rev'ing the protocol o add parameter validation macros so checks that appear multiple places are consistent (and easy to change) o add protocol version check when looking for a scan candidate o improve scan debug output format o rewrite beacon update handling to calculate a bitmask of changed values and pass that down through the driver callback so drivers can optimize work o do slot bounds check before use when parsing received beacons
* add the option to picobsd to copy files from the host filesystemluigi2009-03-181-5/+50
| | | | | | | | | | without root privs. This is done, among other things, replacing the absolute paths in the symlinks with relative paths, so we do not need to do a chroot to follow them. Still need to update the manpage. MFC after: 3 days
* k8temp(4) has been renamed to amdtemp(4).brueffer2009-03-181-0/+2
|
* The zfs_get_xattrdir() function is used to find the extended attributejhb2009-03-181-0/+2
| | | | | | | | | | | | directory for a znode. When the directory already exists, it returns a referenced but unlocked vnode. When a directory does not yet exist, it calls zfs_make_xattrdir() to create a new one. zfs_make_xattrdir() returns the vnode both referenced and and locked and zfs_get_xattrdir() was leaking this vnode lock to its callers. Fix this by dropping the vnode lock if zfs_make_xattrdir() successfully creates a new extended attribute directory. Reviewed by: pjd
* - Fix typogabor2009-03-181-1/+1
| | | | | | PR: kern/132773 Reported by: Alan R. S. Bueno <alan.bsd@gmail.com> Submitted by: Murilo Opsfelder <mopsfelder@gmail.com>
* Fixed deletion of sav entries in key_delsah()vanhu2009-03-181-1/+6
| | | | | | Approved by: gnn(mentor) Obtained from: NETASQ MFC after: 1 month
* Do not use null_bypass for VOP_ISLOCKED, directly call defaultpho2009-03-181-0/+1
| | | | | | | implementation. null_bypass cannot work for the !nullfs-vnodes, in particular, for VBAD vnodes. In collaboration with: kib
* Implement the dynamic string token substitution in the rpath andkib2009-03-183-10/+148
| | | | | | | | | | | | | | | soneeded pathes. The $ORIGIN, $OSNAME, $OSREL and $PLATFORM tokens are supported. Enabling the substitution requires DF_ORIGIN flag in DT_FLAGS or DF_1_ORIGIN if DF_FLAGS_1, that may be set with -z origin gnu ld flag. Translation is unconditionally disabled for setuid/setgid processes. The $ORIGIN translation relies on the AT_EXECPATH auxinfo supplied by kernel. Requested by: maho Tested by: maho, pho Reviewed by: kan
* Clear confirm password field first when adding new user.ganbold2009-03-181-0/+1
| | | | | | PR: i386/132580 Reported by: ilgiz <ilgiz at reid.ru> Approved by: kensmith
* Some NDIS USB drivers try to call URB funcs like URB_FUNCTION_VENDOR_xxxweongyo2009-03-183-52/+286
| | | | | | | or URB_FUNCTION_CLASS_xxx with HAL preemption lock that means it's non-sleepable during USB requests though usb2_do_request() requires a sleep so it needs to send queries to the default pipe without those interfaces to avoid sleep.
* If the caller sets irp_usriostat or irp_usrevent it try to process itweongyo2009-03-181-10/+9
| | | | | | whatever the IRP flag is because some drivers (eg. RTL8187L NDIS driver) call IoCompleteRequest() without setting flags. It will prevent waiting a event forever at attach.
* Remove unused local. usbconfig(8) can now compile underdelphij2009-03-171-1/+0
| | | | WARNS=6.
* Add prototypes for libusb20_be_[gs]et_template.delphij2009-03-171-0/+2
|
* Warns fixes: use putenv rather than setenv to avoid constness problems,dwmalone2009-03-172-2/+4
| | | | | | when we want to print an off_t cast to intmax_t and use %jd. Up WARNS to 6.
* Fix some warns - mainly signedness and unused variables.dwmalone2009-03-171-5/+3
|
* Fix an old-standing bug that crept in along the several revisions:attilio2009-03-171-15/+15
| | | | | | | | | | B_DELWRI cleanup and vnode disassociation should happen just before to assign the buffer to a queue. Reported by: miwi, Volker <volker at vwsoft dot com>, Ben Kaduk <minimarmot at gmail dot com>, Christopher Mallon <christoph dot mallon at gmx dot de> Tested by: lulf, miwi
* Add information about me as a new committer to the src treefabient2009-03-172-0/+3
| | | | Approved by: jkoshy (mentor)
* Deal with the case where ifma_protospec may be NULL, duringbms2009-03-173-6/+37
| | | | | | | | | | | | | | | | | | any IPv4 multicast operations which reference it. There is a potential race because ifma_protospec is set to NULL when we discover the underlying ifnet has gone away. This write is not covered by the IF_ADDR_LOCK, and it's difficult to widen its scope without making it a recursive lock. It isn't clear why this manifests more quickly with 802.11 interfaces, but does not seem to manifest at all with wired interfaces. With this change, the 802.11 related panics reported by sam@ and cokane@ should go away. It is not the right fix, that requires more thought before 8.0. Idea from: sam Tested by: cokane
* Reviewed by: scott (scottl@freebsd.org)sbruno2009-03-171-32/+52
| | | | | | | | | | | | Obtained from: Hideotshi Shimokawa This update is based on comments from Hidetoshi. Changeset 183550 removed the call to crom_load() in fw_busreset(). Restore that call such that the Configuration ROM is valid. Stash and update fwdev settings in fw_explore_node() so that negotiation works again.
* Supply AT_EXECPATH auxinfo entry to the interpreter, both for native andkib2009-03-174-5/+52
| | | | | | | compat32 binaries. Tested by: pho Reviewed by: kan
* Add AT_EXECPATH ELF auxinfo entry type. The value's a_ptr is a pointerkib2009-03-178-26/+16
| | | | | | | | | | to the full path of the image that is being executed. Increase AT_COUNT. Remove no longer true comment about types used in Linux ELF binaries, listed types contain FreeBSD-specific entries. Reviewed by: kan
* Add some definitions for the DT_FLAGS_1 tag flags.kib2009-03-171-0/+5
| | | | Reviewed by: kan
* MFV of tzdata2009cedwin2009-03-171-2/+22
| | | | | | - Cuba has DST again. MFC after: 1 week
* Use the properly sized types for ELF object header and program headers.kib2009-03-171-4/+4
| | | | | | | | | This fixes osrel fetching from the FreeBSD branding note for the 64bit platforms. Reported by: swell.k gmail com Reviewed by: dchagin Tested by: dchagin, swell.k gmail com
* grab NDIS USB lock instead of HAL preemption. This change should beweongyo2009-03-171-3/+4
| | | | happened in the previous.
* Cast to (unsigned long) to make printf happy on i386rnoland2009-03-171-2/+3
| | | | MFC after: 3 days
* Add support for matching solely on vendor id.rnoland2009-03-171-2/+6
| | | | | | We will use this method with nouveau MFC after: 3 days
* Improve the debugging output of drm_mmaprnoland2009-03-171-1/+6
| | | | MFC after: 3 days
* Add list_for_each_prev to our linux compatibility.rnoland2009-03-171-0/+4
| | | | | | We need this for nouveau MFC after: 3 days
* Minor code cleanuprnoland2009-03-171-1/+1
| | | | MFC after: 3 days
* We can have more than 3 pci resourcesrnoland2009-03-171-1/+1
| | | | MFC after: 3 days
* Cast register maps and offsets to vm_offset_trnoland2009-03-171-6/+12
| | | | MFC after: 3 days
* Change the logic around to match ati_pcigart.rnoland2009-03-171-2/+2
| | | | MFC after: 3 days
* Use flsl() here rather than ffsl()rnoland2009-03-171-1/+1
| | | | | | I discovered that we were computing page_order differently than linux. MFC after: 3 days
* Remove the splimp()/splx() calls around the setting of the MTU. They arescf2009-03-171-2/+0
| | | | | | | | no-op's that I inadvertently added. Even if locking is needed in general for the ioctl's, setting a single long will not need it due to the operation being atomic. Reported by: rwatson
* MFp4 //depot/projects/usb 159225,159241,159292thompsa2009-03-175-60/+70
| | | | | | | | | | | Fix regression issue in the USB file system interface. - Use cdev_privdata pointer as indicator of correct file handle. - Remove redundant FIFO opened flags. Don't send ZLP at close for ulpt and uscanner devices as this causes some models to stop working. This reverts back to the USB1 behaviour. Submitted by: Hans Petter Selasky
* MFp4 //depot/projects/usb 159238,159275thompsa2009-03-171-2/+6
| | | | | | Add umass quirks. Submitted by: Michael Gmelin
* Add Supertop IDE adapter and Quickcam entries.thompsa2009-03-171-0/+5
|
* Initial suspend/resume support for amd64.jkim2009-03-1724-20/+1247
| | | | | | This code is heavily inspired by Takanori Watanabe's experimental SMP patch for i386 and large portion was shamelessly cut and pasted from Peter Wemm's AP boot code.
* Add some notes and clarify a few sections:dougb2009-03-161-15/+6
| | | | | | | | 1. Add a note to double-check the man page 2. Remove windows-specific items in the ctrl_interface section 3. Add a note that ap_scan must be set to 1 for use with wlan 4. Clarify the wording for scan_ssid related to APs that hide ssid 5. Clarify the wording for the priority option
* Detach GELI providers on shutdown/reboot, which will allow providers underneathpjd2009-03-161-1/+55
| | | | | | | to close properly. Reported, reviewed and tested by: guido MFC after: 1 week
* Use the right MSI_REARM for RS600.rnoland2009-03-161-0/+1
| | | | MFC after: 3 days
* - Add Brazilian Portuguese catalog [1]gabor2009-03-163-41/+273
| | | | | | | | - Fixes for German catalog [2] PR: kern/132694 [1], conf/80504 [2] Submitted by: Murilo Opsfelder <mopsfelder@gmail.com> [1], brueffer [2]
* intpm: minor enhancementsavg2009-03-161-8/+8
| | | | | | | | | | | 1. fix nointr check in intsmb_start, matters only if ENABLE_ALART is defined (by default, it is not); 2. drop unnecessary inspection/reporting of power-management io registers base address; 3. in verbose mode report errors from SMBus host controller and their mapping to smbus(4) errors; Approved by: jhb (mentor)
OpenPOWER on IntegriCloud