aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* libpam is now standard.Ruslan Ermilov2005-01-251-1/+0
| | | | Notes: svn path=/head/; revision=140805
* MFV: Latest mdoc(7) fixes.Ruslan Ermilov2005-01-253-10/+1
| | | | Notes: svn path=/head/; revision=140803
* This commit was generated by cvs2svn to compensate for changes in r140801,Ruslan Ermilov2005-01-252-25/+42
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=140802
| * Bring in latest mdoc(7) fixes over here.Ruslan Ermilov2005-01-255-35/+43
| | | | | | | | Notes: svn path=/vendor/groff/dist/; revision=140801
* | Previously a read of zero bytes got handled in devfs:vop_read() but IPoul-Henning Kamp2005-01-251-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | missed that when the vnode bypass was introduced. Deal with zero length transfers before we even get to fo_ops->fo_read(). Found by: Slawa Olhovchenkov <slwzxy.spb.ru@zxy.spb.ru> PR: 75758 Notes: svn path=/head/; revision=140800
* | Add quirk for easyRAID ER5 alias areca ARC-6010.Michael Reifenberger2005-01-251-0/+5
| | | | | | | | | | | | | | | | | | | | It reports itself as SCSI-3 but doesnt like getting probed on high luns because it hangs hard after finding itself again on lun 32... Suggested by: Kenneth Merry Notes: svn path=/head/; revision=140799
* | Remove dummy vendor id for DIGITAL now that we have the real one.Poul-Henning Kamp2005-01-251-1/+0
| | | | | | | | Notes: svn path=/head/; revision=140798
* | Use new style declarations instead of K&R ones.Xin LI2005-01-251-10/+5
| | | | | | | | Notes: svn path=/head/; revision=140797
* | Use modern style defination for main() and move a externXin LI2005-01-252-4/+6
| | | | | | | | | | | | | | | | | | declaration to global section. Bump WARNS?= to 6 Notes: svn path=/head/; revision=140796
* | Code style tweaks: Use static and const where suitable.Xin LI2005-01-251-7/+6
| | | | | | | | Notes: svn path=/head/; revision=140795
* | The kernel specified in main() of reboot(8) will be initializedXin LI2005-01-252-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | with -k option and never be used without kflag. This confuses gcc because we set "kflag" at the same time with "kernel", but the logic is not that apparant for gcc. Since we can initialize "kernel" to NULL then know if "k" option is set through determining whether it is still NULL, don't try to have gcc to guess why we are connecting "kflag" with "kernel" and use "kernel" directly in place of kflag. Bump WARNS?= from 2 to 6 Notes: svn path=/head/; revision=140794
* | Minor whitespace cleanupWarner Losh2005-01-251-10/+16
| | | | | | | | | | | | | | | | Add Digitial vendor ID (from NetBSD) Add Anycom vendor and products (from NetBSD) Notes: svn path=/head/; revision=140793
* | Add NEXTCOM NEXTHAWK ethernet card.Warner Losh2005-01-251-2/+6
| | | | | | | | | | | | | | From NetBSD Notes: svn path=/head/; revision=140792
* | Basic support for ZIP archives.Tim Kientzle2005-01-256-8/+566
| | | | | | | | | | | | | | | | | | | | Only supports "deflate" and "none" compression for now. Also, add a few clarifications to the archive_read.3 manpage as requested by William Dean DeVries. Notes: svn path=/head/; revision=140790
* | Remove obsolete comment from head this time. The RELENG_5 commit wasWarner Losh2005-01-251-6/+0
| | | | | | | | | | | | | | | | accidental, but harmless and correct so I'll not be reverting it unless there's some hidden damage I can't see right now... Notes: svn path=/head/; revision=140789
* | Add "NTP pool servers" to the list, including Worldwide, Asia, Europe,Makoto Matsushita2005-01-252-0/+30
| | | | | | | | | | | | | | | | | | | | Oceania, and North America. Obtained from: http://ntp.isc.org/bin/view/Servers/NTPPoolServers MFC after: 1 week Notes: svn path=/head/; revision=140788
* | ntp.cyber-fleet.net is not in DNS database, remove it.Makoto Matsushita2005-01-252-6/+0
| | | | | | | | | | | | | | Reported by: sarumaru at ReichaNet IRC, users-jp@jp.FreeBSD.org, etc. Notes: svn path=/head/; revision=140787
* | Add MagicRAM PC Card Ethernet as ne2000 cloneWarner Losh2005-01-251-0/+1
| | | | | | | | Notes: svn path=/head/; revision=140786
* | Take a swing at using roundup().Juli Mallett2005-01-251-3/+4
| | | | | | | | Notes: svn path=/head/; revision=140784
* | Take VOP_GETVOBJECT() out to pasture. We use the direct pointer now.Poul-Henning Kamp2005-01-257-67/+0
| | | | | | | | Notes: svn path=/head/; revision=140783
* | Don't use VOP_GETVOBJECT, use vp->v_object directly.Poul-Henning Kamp2005-01-2510-43/+41
| | | | | | | | Notes: svn path=/head/; revision=140782
* | Kill VOP_CREATEVOBJECT(), it is now the responsibility of the filesystemPoul-Henning Kamp2005-01-256-44/+0
| | | | | | | | | | | | | | for a given vnode to create a vnode_pager object if one is needed. Notes: svn path=/head/; revision=140781
* | Don't implement vop_createvobject(), vop_open() and vop_close() managesPoul-Henning Kamp2005-01-241-19/+0
| | | | | | | | | | | | | | this for nullfs now. Notes: svn path=/head/; revision=140780
* | Don't call VOP_CREATEVOBJECT(), it's the responsibility of thePoul-Henning Kamp2005-01-248-138/+2
| | | | | | | | | | | | | | filesystem which owns the vnode. Notes: svn path=/head/; revision=140779
* | Create a vnode object when the file is opened. Trust that we did so.Poul-Henning Kamp2005-01-242-14/+2
| | | | | | | | Notes: svn path=/head/; revision=140778
* | Create a vnode_pager object when a file is opened.Poul-Henning Kamp2005-01-241-0/+1
| | | | | | | | Notes: svn path=/head/; revision=140777
* | Add null_open() and null_close() which calls null_bypass() and managedPoul-Henning Kamp2005-01-241-0/+29
| | | | | | | | | | | | | | the v_object pointer. Notes: svn path=/head/; revision=140776
* | Acquire the raw_cb mutex around LIST_REMOVE() of a raw socket controlRobert Watson2005-01-241-0/+2
| | | | | | | | | | | | | | | | | | | | block from the global raw socket list. Submitted by: Roselyn Lee <rosel at verniernetworks dot com> MFC after: 1 week Notes: svn path=/head/; revision=140775
* | Don't create vnode_pager objects for the disk device.Poul-Henning Kamp2005-01-241-2/+0
| | | | | | | | | | | | | | geom_vfs will do that. Notes: svn path=/head/; revision=140774
* | Create a correctly sized vnode objects for disk devices.Poul-Henning Kamp2005-01-241-0/+1
| | | | | | | | Notes: svn path=/head/; revision=140773
* | Eliminate the constant flags argument to vclean()Poul-Henning Kamp2005-01-241-16/+8
| | | | | | | | Notes: svn path=/head/; revision=140772
* | Add a reference to the periodic.conf(5) manual page.Giorgos Keramidas2005-01-241-0/+3
| | | | | | | | | | | | | | Suggested by: simon Notes: svn path=/head/; revision=140771
* | Don't try to create vnode_pager objects on other filesystems vnodes,Poul-Henning Kamp2005-01-243-18/+0
| | | | | | | | | | | | | | either they did it themselves or it won't happen. Notes: svn path=/head/; revision=140770
* | Add a reference to rc.conf(5).Giorgos Keramidas2005-01-241-1/+3
| | | | | | | | | | | | | | | | PR: docs/35648 Submitted by: Gary W. Swearingen Notes: svn path=/head/; revision=140769
* | Create a vp->v_object in VFS_FHTOVP() if we want to be exportablePoul-Henning Kamp2005-01-248-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | with NFS. We are moving responsibility for creating the vnode_pager object into the filesystems which own the vnode, and this is one of the places we have to cover. We call vnode_create_vobject() directly because we own the vnode. If we can get the size easily, pass it as an argument to save the call to VOP_GETATTR() in vnode_create_vobject() Notes: svn path=/head/; revision=140768
* | Move the body of vop_stdcreatevobject() over to the vnode_pager underPoul-Henning Kamp2005-01-244-51/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | the name Sande^H^H^H^H^Hvnode_create_vobject(). Make the new function take a size argument which removes the need for a VOP_STAT() or a very pessimistic guess for disks. Call that new function from vop_stdcreatevobject(). Make vnode_pager_alloc() private now that its only user came home. Notes: svn path=/head/; revision=140767
* | update node reference count debug msgs to include the node addressSam Leffler2005-01-242-19/+26
| | | | | | | | | | | | | | since the mac address may not be sufficient to uniquely identify a node Notes: svn path=/head/; revision=140766
* | EISCONN may be returned by sendto() if an attempt is made to specify theGiorgos Keramidas2005-01-241-0/+2
| | | | | | | | | | | | | | | | | | | | | | destination address to a datagram socket that is already connected. Submitted by: Rudolf Cejka <cejkar@fit.vutbr.cz> PR: docs/76399 MFC after: 1 week Notes: svn path=/head/; revision=140765
* | clear IEEE80211_F_WMEUPDATE when building the initial beacon frame so weSam Leffler2005-01-241-0/+1
| | | | | | | | | | | | | | don't do an update on the first beacon Notes: svn path=/head/; revision=140764
* | noop change so RUN->RUN transition isn't considered invalidSam Leffler2005-01-241-1/+2
| | | | | | | | | | | | | | (it happens on ibss merge) Notes: svn path=/head/; revision=140763
* | add macros to convert between txop's and usecsSam Leffler2005-01-241-0/+2
| | | | | | | | Notes: svn path=/head/; revision=140762
* | Fixup radiotap handling of FCS and QoS frames per discussion with David Young:Sam Leffler2005-01-242-43/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o mark rx frames including FCS in the payload with the IEEE80211_RADIOTAP_F_FCS flag o remove hack to copy 802.11 headers with padding out of line; instead mark the frames with IEEE80211_RADIOTAP_F_DATAPAD and require applications to do the work o split precalculated radiotap flags into tx+rx now that they can be different Note the full usefulness of these changes depends on updates to applications that process radiotap data. Notes: svn path=/head/; revision=140761
* | spell "file system" correctlyPhilippe Charnier2005-01-243-3/+3
| | | | | | | | | | | | | | Approved by: ru Notes: svn path=/head/; revision=140760
* | beacon handling fixups for adhoc mode:Sam Leffler2005-01-241-12/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | o don't reclaim any previous beacon state in ath_beacon_alloc; do it explicitly in ath_newstate o reference count the node held in the beacon frame state block o process ibss merge more intelligently; let the state machine do the right thing instead of explicitly setting the new bssi id o explicitly stop tx dma before doing beacon setup to handle the ibss merge case Notes: svn path=/head/; revision=140759
* | spell "file system" correctlyPhilippe Charnier2005-01-241-6/+6
| | | | | | | | | | | | | | Approved by: ru Notes: svn path=/head/; revision=140758
* | spell "file system" correctlyPhilippe Charnier2005-01-242-4/+4
| | | | | | | | | | | | | | Approved by: ru Notes: svn path=/head/; revision=140757
* | switch to use bus_dmamap_load_mbuf_sgSam Leffler2005-01-241-25/+13
| | | | | | | | Notes: svn path=/head/; revision=140756
* | o correct beacon interval calculation; the internal setting is in TU's not msSam Leffler2005-01-241-7/+4
| | | | | | | | | | | | | | o replace the private macro to convert MS->TU with the common one Notes: svn path=/head/; revision=140755
* | o clarify that beacon interval settings are in TU's, not msSam Leffler2005-01-241-3/+6
| | | | | | | | | | | | | | o add macros to convert between TU's and ms Notes: svn path=/head/; revision=140754
* | statically allocate the station/neighbor node table; the deferredSam Leffler2005-01-249-175/+76
| | | | | | | | | | | | | | | | allocation scheme introduced a race condition during device state transitions Notes: svn path=/head/; revision=140753