summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Add tmclaughs infoahze2007-03-301-0/+1
|
* Add ddsdds2007-03-301-0/+2
|
* - Add myself as erwin's menteegabor2007-03-301-0/+4
| | | | Reviewed by: flz
* Add my mentor tree neighbours.marck2007-03-301-0/+10
|
* Add tmclaugh to my listahze2007-03-301-0/+1
|
* MFP4: 114193, 114194jkim2007-03-301-11/+11
| | | | | | | Dont "return" in linux_clone() after we forked the new process in a case of problems. Move the copyout of p2->p_pid outside the emul_lock coverage. Submitted by: Roman Divacky
* Add adamw's orphanspav2007-03-301-0/+18
|
* Add stub files to keep track of the mentor/mentee relationships.flz2007-03-304-1/+64
| | | | | | | | | | | | Have a look at committers-ports.dot for a start. Simple command to generate the graph is: $ dot -T png -o file.png file.dot Dot can be installed via graphics/graphviz. Discussed on: -developers
* Update with bzip2's URL.delphij2007-03-301-1/+1
|
* - Be more verbose when saying "foo" not found.delphij2007-03-301-10/+10
| | | | | | | - In gctl_get_geom(), don't issue error when we were not provided with an parameter, like gctl_get_provider() did. Reviewed by: pjd
* Free tlabel in fw_xfer_done().simokawa2007-03-301-2/+1
|
* - Don't call fw_busreset() in firewire_attach().simokawa2007-03-301-1/+0
| | | | | | | This should fix the problem that the first bus reset is sometimes ignored because of FWBUSRESET status. MFC after: 3 days
* Instead of direct manipulation on queue and worklist mutexes, bring macroswkoszek2007-03-301-27/+40
| | | | | | | | for doing this job. This change will make it easy to migrate from using spinning locks to adaptive ones. Reviewed by: glebius, julian Approved by: cognet (mentor)
* Do the right thing with symlinks in the skeleton directory.le2007-03-301-1/+7
| | | | PR: bin/63659
* Accept passwords which contain whitespace.le2007-03-301-1/+1
| | | | PR: bin/53434
* Add home directory creation mode to pw.conf(5) and be a bitle2007-03-306-9/+38
| | | | more specific about the effect of the current umask on -M.
* Add -M argument to usage() output.le2007-03-301-0/+2
|
* The last change is not needed for HEAD.glebius2007-03-301-1/+1
| | | | Explained by: ru
* Back out my previous commit to this area, there are differences betweentrhodes2007-03-302-363/+0
| | | | | | our implementation and OpenBSD's. Requested by: des
* Line wrap previous entrykris2007-03-301-2/+4
| | | | Submitted by: des
* Document that EPERM is returned when the calling thread does not haveimp2007-03-302-1/+9
| | | | | | | | | | | the mutex locked. Also tweak the wording to make it more consistant between pthread_cond_wait and pthread_cond_tiedwait. Confirmed with the opengroup's web site that this is a valid return value. Wording used specifically not that of opengroup's online man pages. MFC After: 1 week
* MFP4: Linux futex support for amd64.jkim2007-03-303-148/+175
| | | | | | | Initial patch was submitted by kib and additional work was done by Divacky Roman. Tested by: emulation
* Regen for set_thread_area.jkim2007-03-303-4/+10
|
* MFP4: Linux set_thread_area syscall (aka TLS) support for amd64.jkim2007-03-309-40/+196
| | | | | | Initial version was submitted by Divacky Roman and mostly rewritten by me. Tested by: emulation
* Oops wrong line commented out in prev fixache2007-03-291-2/+2
|
* Back out network.subr :- fix and comment out dhc*_fxp0 examples insteadache2007-03-292-3/+3
| | | | Submitted by: jhb
* Fix a bug in IPv4 address configuration exposed by refcounting.bms2007-03-291-13/+40
| | | | | | | | | | | | | | | | * Join the IPv4 all-hosts multicast group 224.0.0.1 once only; that is, when an IPv4 address is first configured on an interface. * Do not join it for subsequent IPv4 addresses as this violates IGMP. * Be sure to leave the group when all IPv4 addresses have been removed from the interface. * Add two DIAGNOSTIC printfs related to the issue. Further care and attention is needed in this area; it is suggested that netinet's attachment to the ifnet structure be compartmentalized and non-implicit. Bug found by: andre MFC after: 1 month
* Correct the name of the 'proto' command.thompsa2007-03-291-1/+1
| | | | MFC after: 3 days
* some minor error message cleanupsmjacob2007-03-291-4/+4
|
* Use size_t instead of unsigned for pagesize-related values, in order tojasone2007-03-291-4/+8
| | | | | | | | | avoid downcasting issues. In particular, this change fixes posix_memalign(3) for alignments greater than 2^31 on LP64 systems. Make sure that NDEBUG is always set to be compatible with MALLOC_DEBUG. [1] Reported by: [1] Lee Hyo geol <hyogeollee@gmail.com>
* vm_map_delete should be used only internally, by the VM subsystem. Replacewkoszek2007-03-291-6/+2
| | | | | | | | it with vm_map_remove, which not only embeds additional check, but also takes care of locking. Reviewed by: alc Approved by: alc, cognet (mentor)
* Fix get_if_var() with 3 args (i.e. with default)ache2007-03-291-1/+1
| | | | | | | | | | | | | All xxx_<ifname> flags are set to empty strings automatically earlier so eval echo \${${prefix}${_if}${suffix}-${_default}} not substitute the default but return just the empty string. Fix it using eval echo \${${prefix}${_if}${suffix}:-${_default}} (i.e. treat empty strings as unset) The bug manifistates itself with the following warning from checkyesno(): /etc/rc.d/dhclient: WARNING: $background_dhclient is not set properly - see rc.conf(5)
* Add missing El.des2007-03-291-0/+1
| | | | MFC after: 1 week
* Revert rev. 1.205. Replace unconditional acquision of Giant when QUOTAS arekib2007-03-291-0/+5
| | | | | | | | | defined with VFS_LOCK_GIANT(NULL) call. This shall fix softdep operation when mpsafe_vfs = 0. Reported and tested by: kris Submitted by: tegge MFC after: 1 week
* Extend rev. 1.210 to avoid dereference NULL mp in VFS_NEEDSGIANT andkib2007-03-291-5/+14
| | | | | | | | VFS_ASSERT_GIANT. Stop using reserved namespace. Reported and tested by: kris Reviewed and enhanced by: tegge MFC after: 1 week
* Add some more random offensive quotes.kris2007-03-291-0/+26
|
* A note from Peter Wemm about how to tell the difference between amd64 andkris2007-03-291-0/+5
| | | | ia64.
* Dialogue gem from Deadwoodkris2007-03-291-0/+5
|
* Deterministically set the default refresh interval to one second.des2007-03-291-1/+1
| | | | | Approved by: phk MFC after: 1 week
* o Revert last. The chip is already supported by puc(4).maxim2007-03-291-1/+0
| | | | Pointed out by: marcel, Joseph Terner
* Implement the openat() linux syscalljulian2007-03-2912-43/+164
| | | | | Submitted by: Roman Divacky (rdivacky@) MFC after: 2 weeks
* RTC_TIMR's RTC_SEC field is BCD. That makes it unsuitable forimp2007-03-284-8/+13
| | | | | | | | | | | | | | | GetSeconds(). Instead, use CRTR register shifted right 15. This gives us a range of 32 seconds we can do for timeout. Shift to using == rather than < or > for calculating the timeout, since if we can't read the ST_CTRT register twice in a second we have even bigger problems to worry about, and == deals with the 'wrap' issue. This lets me type at the boot2 prompt again! Woo Hoo! Bogusness noticed by: tisco Pointy Hat to: That silly imp guy
* Since we're about to set ST_RTMR to 1 to increase the accuracy of theimp2007-03-281-3/+0
| | | | | CRTR register to be 1/32768th of a second in init, we don't need to do it here.
* All SD cards have a block size of 512. The READ_BL_LEN field in theimp2007-03-281-4/+6
| | | | | | | | | | | | | | | | CSD is usually 512 (well, 9), but for 2GB (and the rogue 4GB SD cards) it is 1024 (or 2048 for 4GB). This value doesn't work for the block read commands (which really want 512). Hardcode 512 for those. This may break really old MMC cards that don't have a 512 block size (I've never seen one: make my day and send me one :-), but since the MMC side of the house is currently broken, it should only have the effect that 2GB (and non-conforming 4GB) SD cards will work. My 'non-conforming' 4GB SD card also works now too. The non-conforming 4GB SD cards were sold for a while before the SD association was worried they would be (a) incompatible (different FAT flavor on them) and (b) confusing for the new SDHC standard and cracked down on suppliers' bogus use of the SD trademark...
* Re-enable the HPET timer after a resume.njl2007-03-281-0/+13
| | | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk> MFC after: 3 days
* Try to silence Coverity by adding (void) in front of function call.emax2007-03-281-1/+11
| | | | | | | Also add a comment, explaining why return value is not being checked. Requested by: netchild MFC after: 1 week
* New sentence -> new linebrueffer2007-03-281-1/+2
|
* Various buglets fixed (from submitter):imp2007-03-281-6/+7
| | | | | | | | | | | | | | | | | The changes to getstr() is so that the character that is passed in to it, is also processed just as the rest. I also removed one of the getc() calls otherwise you loose every second character. I also changed the strcpy of kname, so that it only happens if kname is '\0'. This is so that one can pass a kernel in through /boot.config. The last change to boot2.c is in parse(). If you tried to type a kernel name to boot, the first character was lost, the arg-- fix that. Submitted by: jhay
* Fix problem where memcmp would return true in the case where theimp2007-03-281-1/+1
| | | | | | character after the character that was the same. Submitted by: jhay
* Fix off by one error in length of the string.imp2007-03-281-1/+1
| | | | Submitted by: jhay
OpenPOWER on IntegriCloud