summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Teach /etc/rc.d/ppp how to start/stop individual instancesemax2007-10-181-3/+36
| | | | | | | | of ppp. This is an extension of previous commit. Submitted by: Yuri Kurenkov < y dot kurenkov at init dot ru > Reviewed by: mtm MFC after: 3 days
* Add a -z flag to nfsstat which zeros the NFS statistics after displayingjhb2007-10-184-26/+50
| | | | | | | | them. MFC after: 1 week Requested by: ps Submitted by: ps (6 years ago)
* Add noclusterr and noclusterw options to the options list. I forgot thesebde2007-10-181-1/+1
| | | | when I implemented clustering.
* Fix some style bugs in the mount options list. Mainly, sort the list,bde2007-10-181-6/+7
| | | | | | leaving space for adding missing options. Negative options are sorted after removing their "no" prefix, and generic options are sorted before msdosfs-specific ones.
* Explicitly verify if we have found the VERSION_GEN scriptyar2007-10-181-0/+3
| | | | | instead of passing the possibly null argument to awk(1) and getting an obscure error from it.
* Teach makewhatis.c to treat .SS with the same severity as .SH.edwin2007-10-181-0/+2
| | | | | | | | | | | | | | | | | | | | At least one port (net-mgmt/net-snmp) creates man-pages which are in the format: .SH NAME The Net-SNMP agent \- The snmp agent responds to SNMP queries from management stations. .PP .SS "Modules" At this moment, makewhatis determines the end of the .SH NAME section as where it finds .SH again, but there is none here, is it "terminated" by the .SS. PR: bin/116706 Submitted by: edwin@ Approved by: re (Ken Smith), grog (mentor) MFC after: 1 week
* The fork symbols aren't MD, they already live in sys/.yar2007-10-181-3/+0
| | | | | Found by: version_gen.awk Tested by: md5(1) (libc.so hasn't changed at all)
* The upper while loop has already recycled child process, so the ifdavidxu2007-10-181-3/+1
| | | | | | statement has never executed as expected, fix it. MFC after: 3 days
* Add Winchiphead (or Nanjin QinHeng Electronics) USB Serial converter driver.takawata2007-10-183-1/+1047
| | | | I tested it on cheap serial converter.(Only costs 980JPY.)
* Distinguish the cases when a dup symbol is in different versionsyar2007-10-181-6/+24
| | | | | | | (evil, needs a error) or in the same version (harmless, deserves a mere warning). Noticed by: grehan@, tinderbox
* Removing obsolete etc/cached.conf.bushman2007-10-181-12/+0
| | | | Approved by: brooks (mentor)
* Do not bail out for cleanworld target just becausedelphij2007-10-181-2/+2
| | | | chflags is failed.
* Forced commit to note cached.conf -> nscd.conf repocopy. etc/Makefilebushman2007-10-181-1/+1
| | | | | | changed accordingly. Approved by: brooks (mentor)
* In msdosfs_settattr(), don't do synchronous updates of the denodebde2007-10-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | (except indirectly for the size pseudo-attribute). If anything deserves a sync update, then it is ids and immutable flags, since these are related to security, but ffs never synced these and msdosfs doesn't support them. (ufs_setattr() only does an update in one case where it is least needed (for timestamps); it did pessimal sync updates for timestamps until 1998/03/08 but was changed for unlogged reasons related to soft updates.) Now msdosfs calls deupdat() with waitfor == 0, which normally gives a delayed update to disk but always gives a sync update of timestamps in core, while for ffs everything is delayed until the syncer daemon or other activity causes an update (except for timestamps). This gives a large optimization mainly for things like cp -p, where attribute adjustment could easily triple the number of physical I/O's if it is done synchronously (but cp -p to msdosfs is not as bad as that, since msdosfs doesn't support many attributes so null adjustments are more common, and msdosfs doesn't support ctimes so even if cp doesn't weed out null adjustments they don't become non-null after clobbering the ctime).
* Fix build from errors exposed with recent version_gen.awk commit.grehan2007-10-181-2/+1
| | | | | Not quite sure if this is 100% correct: awaiting review. But quieten tinderbox in the meantime.
* correct guard variable names.imp2007-10-181-3/+3
|
* Merge support from p4 (from NetBSD) for arm9e and arm10, arm11 cores. Notimp2007-10-187-22/+834
| | | | | | yet connected to the build, but reduces diffs to p4 repo. Obtained from: NetBSD
* Merge definitions for ARM9E, ARM10 and ARM11 processors from p4 (whichimp2007-10-181-2/+14
| | | | got them from NetBSD).
* - Correctly define CACHED_SOCKET_PATH as /var/run/nscd after cached totmclaugh2007-10-171-1/+1
| | | | | | nscd renaming. Approved by: mux
* MFp4:yar2007-10-171-29/+75
| | | | | | | | | | - Check for duplicated symbols and suggest moving them to ObsoleteVersions. - Improve and unify error handling. - Make the regular expressions more uniform, robust, and less sensitive to harmless variations in the input such as those to whitespace amount. Reviewed by: deischen Tested with: md5 (Version.map files in /usr/obj stay the same)
* Delete an extra backslash at the end of the xterm-basic entry.yar2007-10-171-1/+1
| | | | | | | It can be missed easily that the following blank line formally belongs to the xterm-basic entry due to the unneeded backslash. PR: bin/80256 (audit trail)
* Mention that less was upgraded to 409.delphij2007-10-171-1/+1
|
* Add whitespace.krion2007-10-171-1/+1
|
* Update for INDEX-8 support.krion2007-10-171-1/+3
|
* Prevent strange crashes in fmt with absurd goal lengths introduced by thejmallett2007-10-171-0/+2
| | | | | | | | | | | | | | support for wide characters. If the sizeof (wchar_t) times max_length would yield a value beyond representation in a size_t, exit with a usage error up front, rather than strange errors down the line from trying to malloc (well, realloc) with a size of 0. This is perhaps not the optimal behaviour - a clamp may be more appropriate as we clamp the value of max_length now anyway, but this is at least better than segfaulting or worse. On systems which are friendly to malloc with a value of 0 the results could end up being strange corruption of the output.
* Fix incorrect string formats for netstat/srrs2007-10-171-48/+48
| | | | | | PR: 117175 Obtained from: Weongyo Jeong (weongyo.jeong@gmail.com) MFC after: 1 week
* Fix various memory leaks.kib2007-10-171-3/+13
| | | | | | Submitted by: rdivacky Obtained from: OpenBSD MFC after: 1 week
* The previous version included too many file system types in the scan,se2007-10-172-3/+9
| | | | | | | | | | | | | | | | | | since "local" includes also synthetic file systems (e.g. /dev, /proc) and loopback mounts. This version uses lsvfs to identify file system types that are local and additionally not synthetik, loopback mounts, or read-only. This has been suggested by Craig Rodrigues half a year ago. The patch that has been committed is based on his suggestion, but slightly modified. The comments in locate.rc have been updated to reflect the change and o include zfs and xfs in the example file system parameter that can be used to override the default outlined above. PR: 114101 Submitted by: rodrigc at crodrigues dot org (Craig Rodrigues) MFC: 2 weeks
* Use the direct mapping, if available, for pmap_zero_page_xscale() as well.cognet2007-10-161-0/+15
|
* ULE works fine on arm; allow it to be usedsam2007-10-161-1/+1
| | | | | Reviewed by: jeff, cognet, imp MFC after: 1 week
* - Fix the handling of R_SPARC_OLO10, which is a bit of a special casemarius2007-10-162-17/+28
| | | | | | | | | | | | | | | | | | | | in the way we implement handling of relocations. As for the kernel part this fixes the loading of lots of modules, which failed to load due to unresolvable symbols when built after the GCC 4.2.0 import. This wasn't due to a change in GCC itself though but one of several changes in configuration done along the import. Specfically, HAVE_AS_REGISTER_PSEUDO_OP, which causes GCC to denote global registers used for scratch purposes and in turn GAS uses R_SPARC_OLO10 relocations for, is now defined. While at it replace some more ELF_R_TYPE which should have been ELF64_R_TYPE_ID but didn't cause problems so far. - Sync a sanity check between kernel and rtld(1) and change it to be maintenance free regarding the type used for the lookup table. - Sprinkle const on lookup tables. - Use __FBSDID. Reported and tested by: yongari MFC after: 5 days
* Backout rev 1.62, and revert to use -march=armv5te -D__XSCALE__ insteadcognet2007-10-161-1/+3
| | | | | | | | | of -mcpu=xscale for XScale. gcc still has issues with -mcpu=xscale, and now crashes while building systat. Reported by: sam MFC After: 3 days
* Print the stack bounds of the thread.marcel2007-10-161-0/+2
|
* - fix sctp_ifn initial refcount issue (prevents deletion)rrs2007-10-1610-54/+64
| | | | | | | | | | | | | | | | | | | | | | | - fix a bug during cookie collision that prevented an association from coming up in a specific restart case. - Fix it so the shutdown-pending flag gets removed (this is more for correctness then needed) when we enter shutdown-sent or shutdown-ack-sent states. - Fix a bug that caused the receiver to sometimes NOT send a SACK when a duplicate TSN arrived. Without this fix it was possible for the association to fall down if the - Deleted primary destination is also stored when SCTP_MOBILITY_BASE. (Previously, it is stored when only SCTP_MOBILITY_FASTHANDOFF) - Fix a locking issue where we might call send_initiate_ack() and incorrectly state the lock held/not held. Also fix it so that when we release the lock the inp cannot be deleted on us. - Add the debug option that can cause the stack to panic instead of aborting an assoc. This does not and should never show up in options but is useful for debugging unexpected aborts. - Add cumack_log sent to track sending cumack information for the debug case where we are running a special log per assoc. - Added extra () aroudn sctp_sbspace macro to avoid compile warnings. MFC after: 1 week
* Rescue hw.machine_arch in CTL_HW_NAMES.ru2007-10-161-0/+1
|
* Rescue whitespace nits.ru2007-10-161-2/+2
|
* Fix CTL_VM_NAMES.ru2007-10-161-8/+8
|
* VM_METER is long deprecated.ru2007-10-161-2/+2
|
* Rescue parts of the sensorsd commit that are still relevant:ru2007-10-161-6/+9
| | | | | | - HW_FLOATINGPOINT renamed to HW_FLOATINGPT. - Documented HW_REALMEM. - Sorted as per <sys/sysctl.h>.
* Get rid of qaddr_t.alfred2007-10-1619-34/+34
| | | | Requested by: bde
* Export maxswzone, maxbcache, maxtsiz, dfldsiz, maxdsiz, dflssiz, maxssiz,alfred2007-10-161-0/+10
| | | | | | and sgrowsiz via sysctl. MFC after: 1 week
* Use macro THR_CLEANUP_PUSH/POP, they are cheaper than pthread_cleanup_push/pop.davidxu2007-10-161-2/+4
|
* Reverse the logic of UP and SMP.davidxu2007-10-161-1/+1
| | | | Submitted by: jasone
* Some left over from the sensors framework.mlaier2007-10-162-645/+0
|
* Set PTE_ACCESSED in the PTE and before inserting it in the VHPT.marcel2007-10-161-2/+12
| | | | | | | | This avoids back-to-back faults for all TLB misses. This can be improved further in the future by also setting PTE_DIRTY for TLB misses for write accesses. MFC after: 1 week
* The flushrs instruction must be the first in an instructionmarcel2007-10-161-0/+1
| | | | | | | group. GNU as(1) already made sure of that, but it's better to actually have the code right. MFC after: 1 week
* Print instruction stops to improve analysis of dependencymarcel2007-10-161-0/+2
| | | | | | violations. MFC after: 1 week
* Fix disassembly of the invala, itc, itr and hint instructionsmarcel2007-10-161-1/+1
| | | | | | by fixing the opcode ordering. MFC after: 1 week
* Bump version for libpcap and tcpdump importsmlaier2007-10-161-1/+1
| | | | MFC after: 3 days
* Update for tcpdump 3.9.8mlaier2007-10-162-45/+76
|
OpenPOWER on IntegriCloud