summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add a new flag to dumpfs(8), -f, which causes dumpfs to list all freerwatson2009-01-282-7/+82
| | | | | | | | | | | | | | | | | | | fragments in the file system by fragment (block) number. This new mode does the necessary arithmetic to generate absolute fragment numbers rather than than the cg-relative numbers printed in the default mode. If -f is passed once, contiguous fragment ranges are collapsed into an X-Y format as free block lists are currently printed in regular dumpfs output, but if specified twice, all block numbers are printed individually, allowing both compact and more script-friendly representation. This proves quite handy when attempting to recover deleted data, as it allows exclusion of non-deleted data from blocks searched. MFC after: 1 week Discussed with: jeff, Richard Clayton <richard dot clayton at cl.cam.ac.uk> Sponsored by: Google, Inc.
* at91dci isn't useful except on arm.imp2009-01-281-1/+2
|
* Fix parsing of acregmin, acregmax, acdirmin and acdirmax NFS mount optionsrodrigc2009-01-282-8/+12
| | | | | | when passed as strings via nmount(). Submitted by: Jaakko Heinonen <jh saunalahti fi>
* Update the manpage to reflect r145172.das2009-01-281-2/+1
|
* Vendor import of gdtoa 20081205.das2009-01-2831-147/+1899
|\
| * Import gdtoa sources dated 2008-12-05. Notable changes include a fixdas2009-01-2831-141/+1900
| | | | | | | | for a regression in strtod() and support for multibyte decimal points.
| * Import the latest gdtoa sources from the vendor, dated 2008-08-31.das2008-09-0314-96/+278
| |
| * Flatten vendor/gdtoa/* harder.das2008-09-0385-0/+0
| | | | | | | | Pointy hat to: das
| * Flatten vendor/gdtoa/*.das2008-09-0385-0/+0
| |
* | Remove comment about clearerr() being the only method of clearingtrhodes2009-01-281-3/+1
| | | | | | | | | | | | | | | | | | the EOF indicator, fseek() may also be used for this. Bump document date. PR: 76333 Submitted by: Yoshihiko Sarumaru <mistral@imasy.or.jp>
* | Extend channel definition with:sam2009-01-271-0/+3
| | | | | | | | | | | | | | | | o max antenna gain o driver private opaque data Note this grows the size of a channel to 16 bytes; which makes the default channel table 4Kbytes (up from 3Kbytes).
* | fix commentsam2009-01-271-1/+1
| |
* | Remove assumptions about the max # channels in ioctl's:sam2009-01-273-115/+205
| | | | | | | | | | | | | | | | | | o change ioctl's that pass channel lists in/out to handle variable-size arrays instead of a fixed (compile-time) value; we do this in a way that maintains binary compatibility o change ifconfig so all channel list data structures are now allocated to hold MAXCHAN entries (1536); this, for example, allows the kernel to return > IEEE80211_CHAN_MAX entries for calls like IEEE80211_IOC_DEVCAPS
* | change ic_getradiocaps driver callback to include the max # channelssam2009-01-274-8/+10
| | | | | | | | so callers know the size of the array passed down
* | o add country codes from Atheros regulatory; these are not listed insam2009-01-271-10/+43
| | | | | | | | | | | | | | | | the ISO tables, mark them accordingly o add sku's for handling 900MHz cards o add opaque struct defs and change []'s to *'s so this file can be included w/o requiring all of net80211 to be pulled in o make CTRY_DEBUG and CTRY_DEFAULT public
* | remove %b msg bit defines now publicsam2009-01-271-7/+0
| |
* | o make %b msg bit defines public (to user apps too)sam2009-01-277-61/+61
| | | | | | | | o rename IEEE80211_C_CRYPTO_BITS to IEEE80211_CRYPTO_BITS
* | fill in ieee channel #'s and max tx power for drivers that work exclusivelysam2009-01-271-0/+15
| | | | | | | | with frequencies; this mimics how ieee80211_setregdomain works
* | add new state bit to indicate when interference is observed on the channelsam2009-01-271-0/+3
| |
* | change IEEE80211_IS_CHAN_OFDM and IEEE80211_IS_CHAN_CCK to return truesam2009-01-271-2/+2
| | | | | | | | for 11g (dynamic CCK/OFDM)
* | define IEEE80211_CHAN_108A and IEEE80211_CHAN_108G in terms of theirsam2009-01-271-2/+2
| | | | | | | | non-turbo names to make the relationship more clear
* | Bump .Dd for r187782.keramida2009-01-271-1/+1
| |
* | update to 0.5.11: some useful bug fixes (check ChangeLog)sam2009-01-2742-163/+378
| | | | | | | | | | Submitted by: scf MFC after: 3 weeks
* | Following a fair amount of real world experience with ACLs andrwatson2009-01-275-39/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | extended attributes since FreeBSD 5, make the following semantic changes: - Don't update the inode modification time (mtime) when extended attributes (and hence also ACLs) are added, modified, or removed. - Don't update the inode access tie (atime) when extended attributes (and hence also ACLs) are queried. This means that rsync (and related tools) won't improperly think that the data in the file has changed when only the ACL has changed. Note that ffs_reallocblks() has not been changed to not update on an IO_EXT transaction, but currently EAs don't use the cluster write routines so this shouldn't be a problem. If EAs grow support for clustering, then VOP_REALLOCBLKS() will need to grow a flag argument to carry down IO_EXT to UFS. MFC after: 1 week PR: ports/125739 Reported by: Alexander Zagrebin <alexz@visp.ru> Tested by: pluknet <pluknet@gmail.com>, Greg Byshenk <freebsd@byshenk.net> Discussed with: kib, kientzle, timur, Alexander Bokovoy <ab@samba.org>
* | fix printing of uint64_t values, so we can use WARNS=2luigi2009-01-274-11/+27
| |
* | When synchronizing the clock at system startup time, use bothkeramida2009-01-272-3/+7
| | | | | | | | | | | | | | | | | | the -g and -q options. They do a slightly different thing and both are necessary when the time difference is large. Noticed by: danger, in the forums Approved by: roberto MFC after: 1 week
* | Fix the input buffer at 1024. The previous calculated buffer sizen_hibma2009-01-271-5/+6
| | | | | | | | | | | | exceeded the maximum size of 1 page for OHCI controllers. Other serial drivers use the same size, so I assume this should be enough (1MB/s throughput?).
* | fix wrong variable usage...luigi2009-01-271-2/+1
| |
* | Put nat and ipv6 support in their own files.luigi2009-01-275-1320/+1436
| | | | | | | | | | | | | | | | Usual moving of code with no changes from ipfw2.c to the newly created files, and addition of prototypes to ipfw2.h I have added forward declarations for ipfw_insn_* in ipfw2.h to avoid a global dependency on ip_fw.h
* | Put dummynet-related code in a separate file.luigi2009-01-273-785/+853
| | | | | | | | | | To this purpose, add prototypes for global functions in ipfw2.h and move there also the list of tokens used in various places in the code.
* | never mind, for the time being let's stick with WARNS=0 untilluigi2009-01-271-2/+2
| | | | | | | | we sort out all proper printf formats.
* | Start splitting the monster file in smaller blocks.luigi2009-01-274-589/+681
| | | | | | | | | | | | | | | | | | | | | | | | In this episode: - introduce a common header with a minimal set of common definitions; - bring the main() function and options parser in main.c - rename the main functions with an ipfw_ prefix No code changes except for the introduction of a global variable, resvd_set_number, which stores the RESVD_SET value from ip_fw.h and is used to remove the dependency of main.c from ip_fw.h (and the subtree of dependencies) for just a single constant.
* | - Add support for Moxa Technologies CP-168EL/PCIe card.stas2009-01-271-0/+6
| | | | | | | | | | Submitted by: dmarck MFC after: 1 week
* | put the usage() function inline, it was only 1 line and used once;luigi2009-01-271-19/+10
| | | | | | | | | | slightly reformat the help() text; slightly correct the text for the 'extraneous filename' error message;
* | put all options in a single struct, and document them.luigi2009-01-271-126/+146
| | | | | | | | | | This will allow us to easily restore the original values when processing commands from a file (where each individual line can have its own options).
* | I believe this is safe to build with WARNS=2 nowluigi2009-01-271-1/+1
| |
* | remove a couple of rarely used #define;luigi2009-01-271-13/+12
| | | | | | | | | | change PRINT_UINT from a macro to a function (renaming is postponed to reduce clutter)
* | - Add support for nehalem/corei7 cpus. This supports all of the corejeff2009-01-275-56/+864
| | | | | | | | | | | | | | | | counters defined in the reference manual. It does not support the 'uncore' events. Reviewed by: jkoshy Sponsored by: Nokia
* | Follow up with previous commit: mention -D, not -C when cg checkdelphij2009-01-271-1/+1
| | | | | | | | | | | | failed. Submitted by: obrien
* | s/use/using/ in previous commit.trhodes2009-01-271-1/+1
| | | | | | | | Suggested by: jhb
* | Add ENOMEM to the return values.trhodes2009-01-271-24/+16
| | | | | | | | | | | | | | | | | | | | | | Remove invalid return values. Remove reference to non-existent manual pages. Remove reference to rfork (it does not discuss RFSTOPPED). Add sys/unistd.h to the list of includes (required for RFSTOPPED). PR: 126227 Submitted by: Mateusz Guzik <mjguzik@gmail.com> (based on, original version) Reviewed by: jhb, Christoph Mallon <christoph.mallon@gmx.de>
* | Remove DETACH event handling; this is race prone and does nothing useful.sam2009-01-261-6/+5
| | | | | | | | | | | | | | Leave a comment for the next person that thinks they need to be helpful. Reviewed by: imp, jhb MFC after: 2 weeks
* | Delete commented out ancient history.imp2009-01-261-14/+0
| |
* | Clean up ng_ubt2. Get rid of excessive use of NG_NODE_REF/UNREF().emax2009-01-262-503/+244
| | | | | | | | | | | | | | | | | | Make detach() completely synchronous. Properly handle stalled USB transfers (use internal mechanism instead of submitting own control transfers). Rename/remove a couple of variables and update comments. This work was done in close collaboration with HPS. Reviewed by: HPS
* | Don't unlock the parent ppc lock until after releasing the ppbus.jhb2009-01-261-1/+1
| | | | | | | | Submitted by: csjp
* | Make the Monty Python quote more google friendly instead oftrhodes2009-01-261-3/+2
| | | | | | | | | | | | hacking it apart. Discussed with: Christoph Mallon <christoph.mallon@gmx.de>
* | MFp4 //depot/projects/usb/ @156706thompsa2009-01-261-6/+10
| | | | | | | | | | | | Adjust an UHCI portreset delay. Submitted by: Hans Petter Selasky
* | Regen.thompsa2009-01-262-2/+46
| |
* | MFp4 //depot/projects/usb/ @156522,156530thompsa2009-01-263-1/+36
| | | | | | | | | | | | | | UHCI SOF Quirk. Makes some broken USB devices work again. Reported by several people. Patch made by me. Submitted by: Hans Petter Selasky
* | MFp4 //depot/projects/usb/ @156521thompsa2009-01-261-22/+50
| | | | | | | | | | | | | | U3G regression issue. Patch to support multiple modem instances per logical USB interface. Submitted by: Hans Petter Selasky
OpenPOWER on IntegriCloud