summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Hook up mac_stub to the modules Makefile.rwatson2003-08-214-0/+4
| | | | | Hook up mac_stub in files and options. Reference mac_stub in NOTES.
* Add FreeBSD 5.1 and BSD/OS 5.0 to the family tree.murray2003-08-211-12/+16
|
* Sync to 1.65imp2003-08-211-5/+5
|
* Change INTERSIL to INTERSIL2 for the -1 case. Chances are good thatimp2003-08-211-2/+2
| | | | this card has a real ID, but I don't know what it is at this time.
* Regen for 1.64imp2003-08-211-5/+8
|
* Vendor 0xb is intersil, not Netgear. The MA401RA is just Netgear'simp2003-08-211-2/+5
| | | | | modle number, and I continue to use it as a place holder until I find out what Intersil's name for it is.
* Replace 'OS release date' with 'kernel release date' here, too.eivind2003-08-211-1/+1
| | | | Reminded by: ru
* Generally rename things to represent the fact that this is now therwatson2003-08-211-269/+271
| | | | | | | | mac_stub policy and no longer mac_none (as found in the repocopy). Add comment to this effect. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* mac_none is now the null policy, not a stub policy, so remove therwatson2003-08-211-1031/+5
| | | | | | | stubs. Add a pointer to mac_stub, which is now the stub policy. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Apply Rudolf Cejka's patch for:orion2003-08-212-47/+42
| | | | | | | | | | | | o AD1980 hook. o ac97_fix_auxout. and: o Associate AC97_MIX_AUXOUT with SOUND_MIXER_OGAIN rather than SOUND_MIXER_MONITOR. o Add ac97_fix_tone to remove tone controls from mixer if invalid.
* Add patch for AD198x.orion2003-08-212-0/+7
| | | | Submitted by: Oleg Sharoiko, Rudolf Cejka.
* Forced commit to reflect repo-copy of:rwatson2003-08-210-0/+0
| | | | | | | | | | modules/mac_none/Makefile -> modules/mac_stub/Makefile security/mac_none/mac_none.c -> security/mac_stub/mac_stub.c mac_none will become a null policy, and mac_stub will be the stub policy from here on out. Thanks Joe!
* Catch up ep(4) with the hardware notes.simon2003-08-211-2/+22
| | | | | | | Submitted by: Lukas Ertl <l.ertl@univie.ac.at> PR: docs/55659 Confirmed by: driver source code and pccard.conf MFC after: 3 days
* Catch up fe(4) with the hardware notes.simon2003-08-211-1/+22
| | | | | | | Submitted by: Lukas Ertl <l.ertl@univie.ac.at> PR: docs/55636 Confirmed by: driver source code and pccard.conf MFC after: 3 days
* Change description of kern.osreldate from "Operating system release date" toeivind2003-08-211-1/+5
| | | | "Kernel release date" - userland version is in /usr/include/osreldate.h
* Implementations of mpo_check_vnode_deleteextattr() andrwatson2003-08-213-1/+112
| | | | | | | mpo_check_vnode_listextattr() for Biba, MLS, and BSD Extended. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Add the SmartBridges SmartLink to the list of supported devices.simon2003-08-211-1/+2
| | | | | | | Submitted by: Lukas Ertl <l.ertl@univie.ac.at> PR: docs/55644 Confirmed by: driver source code MFC after: 3 days
* Regen.jhb2003-08-213-5/+5
|
* Swap sigaction/sigreturn since they are in the wrong order.jhb2003-08-211-2/+2
| | | | Noticed indirectly by: peter
* Add mac_check_vnode_deleteextattr() and mac_check_vnode_listextattr():rwatson2003-08-2115-8/+312
| | | | | | | | | | | explicit access control checks to delete and list extended attributes on a vnode, rather than implicitly combining with the setextattr and getextattr checks. This reflects EA API changes in the kernel made recently, including the move to explicit VOP's for both of these operations. Obtained from: TrustedBSD PRoject Sponsored by: DARPA, Network Associates Laboratories
* Include order bit in sdev->type.simokawa2003-08-211-1/+1
|
* Add in a missing device entry that I thought was already in there. Thisambrisko2003-08-211-0/+10
| | | | | | is from the same PR. Prompted by the reporter of the PR. PR: 38372
* Regenpeter2003-08-218-28/+28
|
* This is too funny for words. Swap syscalls 416 and 417 around. It workspeter2003-08-212-4/+4
| | | | better that way when sigaction() and sigreturn() do the right thing.
* Minimal update to make it easier to increase the buffer-size lpd usesgad2003-08-212-10/+20
| | | | | | | | | | when reading/writing spool files. I intend to do a more elaborate version, but I want to get this much in before 4.9-release. As written, this results in no change to the object code. Submitted by: John-Mark Gurney Reviewed by: /sbin/md5 MFC after: 4 days
* In my efforts to make checking the CD bits less error-prone, Iimp2003-08-201-1/+1
| | | | | | | introduced an error. In power_enable_socket, we only return ENODEV if there isn't a card, not if there is a card. Ooops. Pointy hat to: bsdimp
* Write the short and long version of the monthmtm2003-08-201-50/+24
| | | | | | | names in Amharic instead of English. Also, remove some extra names I had previously considered including. They don't make sense since the calendar names don't match up.
* Add Protocol Independent Multicast protocol.hsu2003-08-201-0/+1
| | | | Submitted by: Pavlin Radoslavov <pavlin@icir.org>
* Assert that the vm object lock is held in vm_page_alloc().alc2003-08-201-0/+1
|
* - Lock the pte object when performing vm_page_grab().alc2003-08-201-3/+9
| | | | | - Insure that the page table page is zero filled before adding it to the page table.
* Remove about 40 lines of #ifdef/#endif by using new macrosrwatson2003-08-209-630/+279
| | | | | | | | | MAC_DEBUG_COUNTER_INC() and MAC_DEBUG_COUNTER_DEC() to maintain debugging counter values rather than #ifdef'ing the atomic operations to MAC_DEBUG. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* bde made a number of suggested improvements to the code. This commitimp2003-08-201-20/+17
| | | | | | | | | | represents the pruely stylistic changes and should have no net impact on the rest of the code. bde's more substantive changes will follow in a separate commit once we've come to closure on them. Submitted by: bde
* In sysctl_vm_zone, do not calculate per-cpu cache stats onbmilekic2003-08-201-20/+17
| | | | | | | | | | | UMA_ZFLAG_INTERNAL zones at all. Apparently, Wilko's alpha was crashing while entering multi-user because, I think, we were calculating the garbage cachefree for pcpu caches that essentially don't exist for at least the 'zones' zone and it so happened that we were reading from an unmapped location. Confirmed to fix crash: wilko Helped debug: wilko, gallatin
* Before digging into IGMP locking, do a whitespace and prototype cleanup:rwatson2003-08-201-73/+60
| | | | | | prefer tabs to 8 spaces, focus on consistent indentation, prefer modern C function prototypes. Not all the way to style(9), but substantially closer.
* Move from a custom-crafted singly-linked list to the SLIST_* macrosrwatson2003-08-202-27/+23
| | | | | | | | | from queue(3). Improve vertical compactness by using a IGMP_PRINTF() macro rather than #ifdefing IGMP_DEBUG a large number of debugging printfs. Reviewed by: mdodd (SLIST changes)
* Fix accidental line deletion.obrien2003-08-201-0/+1
|
* Add the IP_ONESBCAST option, to enable undirected IP broadcasts to be sent onbms2003-08-207-2/+66
| | | | | | | | | | specific interfaces. This is required by aodvd, and may in future help us in getting rid of the requirement for BPF from our import of isc-dhcp. Suggested by: fenestro Obtained from: BSD/OS Reviewed by: mini, sam Approved by: jake (mentor)
* _thr_sig_check_pending is also called by scope system thread when it leavesdavidxu2003-08-202-0/+6
| | | | | | | | | critical region, we wrap some syscalls for thread cancellation point, and when syscalls returns, we call _thr_leave_cancellation_point, at the time if a signal comes in, it would be buffered, and when the thread leaves _thr_leave_cancellation_point, buffered signals will be processed, to avoid messing up normal syscall errno, we should save and restore errno around signal handling code.
* Fix typo in last commit.mux2003-08-201-1/+1
|
* Get rid of a __DECONST by strdup'ing the string in question. Whenharti2003-08-201-1/+2
| | | | | | | called this way the program just prints its help intro, so the memory leak is not a problem. Pointed out by: bde
* Fix build by correcting a wrong cast.mux2003-08-201-1/+1
|
* o Reduce rc(8) startup clutter by turning the informational messagesmtm2003-08-202-5/+9
| | | | | | | | off by default. o Apparently the routine displaying the informational messages wasn't checking its knob in rc.conf, so fix that as well. Requested by: obrien
* Use PC Card instead of other variants in the driver man pages.imp2003-08-206-12/+12
|
* The PCMCIA Standard dictates that those funny cards you insert intoimp2003-08-204-18/+18
| | | | | laptops are "PC Cards" and uses said term consistantly. Allow my foolish hobgoblins to get the better of me and become consistant.
* Add a new variable 'skipPCCARD'. This variable will cause sysinstallimp2003-08-208-2/+26
| | | | | | | | | to ignore all PC Card devices. Submitted by: Anders Nordby PR: bin/37650 MFC After: 2 weeks
* Add a general mechanism for creating and applyingmtm2003-08-205-2/+298
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | devfs(8) rules in rc(8). It is most useful for applying rules to devfs(5) mount points in /dev or inside jails. The following line of script is sufficient to mount a relatively useful+secure devfs(5) in a jail: devfs_mount_jail /some/jail/dev Some new shell routines available to scripts that source rc.subr(5): o devfs_link - Makes it a little easier to create symlinks o devfs_init_rulesets - Create devfs(8) rulesets from devfs.rules o devfs_set_ruleset - Set a ruleset to a devfs(5) mount o devfs_apply_ruleset - Apply a ruleset to a devfs(5) mount o devfs_domount - Mount devfs(5) and apply some ruleset o devfs_mount_jail - Mount devfs(5) and apply a ruleset appropriate to jails. Additional rulesets can be specified in /etc/devfs.rules. If the devfs_system_ruleset variable is defined in rc.conf and it contains the name of a ruleset defined in /etc/defaults/devfs.rules or user supplied rulesets in /etc/devfs.rules then that ruleset will be applied to /dev at startup by the /etc/rc.d/devfs script. It can also be applied post-startup: /etc/rc.d/devfs start This is a more flexible mechanism than the previous method of using /etc/devfs.conf. However, that method is still available. Note: since devfs(8) doesn't provide any way for creating symlinks as part of a ruleset, anyone wishing to create symlinks in a devfs(5) as part of the bootup sequence will still have to rely on /etc/devfs.conf.
* Use CBB_CARD_PRESENT instead of checking STATE_CD directly since it isimp2003-08-201-4/+6
| | | | hard to get right.
* Lock the pmap's tsb object when performing vm_page_grab() on it.alc2003-08-201-0/+2
|
* Fix panic from having multiple locks held when updating firmware. AN_LOCKambrisko2003-08-201-9/+11
| | | | was asserted during a tsleep resulting in a panic in tsleep.
* pc98pcic isn't the name of the media driver. tcic likely will neverimp2003-08-201-3/+0
| | | | | happen (unless someone sends one to me). Kill bogus module depend that I commented out over a year ago.
OpenPOWER on IntegriCloud