summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Prepare for upcoming POSIXed putenv() rewrite:ache2007-04-302-2/+2
| | | | don't allow putenv() arg be on the stack, use strdup()
* MFp4: Fix typo in recv spd.simokawa2007-04-301-1/+1
| | | | MFC after: 1 week
* Slightly tune previous fix: free memory if !exportache2007-04-301-2/+2
|
* Prepare for upcoming POSIXed putenv() rewrite:ache2007-04-301-2/+3
| | | | don't free memory after putenv()
* Prepare for upcoming POSIXed putenv() rewrite:ache2007-04-301-1/+1
| | | | don't free memory after putenv()
* MFp4: Add a sysctl knob to disable cycle master mode and add some comments.simokawa2007-04-301-1/+9
| | | | MFC after: 1 week
* MFp4: remove unused fw_asybusy().simokawa2007-04-302-15/+0
| | | | MFC after: 1 week
* Prepare for upcoming POSIXed putenv() rewrite:ache2007-04-301-4/+4
| | | | don't allow putenv() arg be on the stack, replace putenv() with setenv()
* o Fill the list of icmp types; make its size depend on ICMP_MAXTYPE.maxim2007-04-301-20/+50
| | | | | | | | | | o Print "unknown ICMP" instead of "(null)" if we don't have a description for a icmp type. Based on code Submitted by: Christoph Weber-Fahr PR: misc/112126 MFC after: 2 weeks
* MFp4: Simplify tlabel handlingsimokawa2007-04-302-40/+30
| | | | | | | | - Remove struct tl_label and runtime malloc() for it. - Include tl_lable list in struct fw_xfer. - Don't free unallocated tlabel. MFC after: 1 week
* Put some safeguards:ache2007-04-301-4/+9
| | | | | | | 1) Under POSIX unsetenv("foo=bar") is explicit error and not equal to unsetenv("foo") 2) Prepare for upcomig POSIXed putenv() rewrite: make putenv() calls portable and conforming to standard.
* Initialize configuration ROM before a bus reset.simokawa2007-04-303-4/+5
| | | | MFC: after 3 days
* (atapi_action, case XPT_SCSI_IO): Enable DMA only for READ and WRITE commandsthomas2007-04-301-4/+19
| | | | | | | | as some combinations of chipset, controller and target do not behave correctly when DMA is enabled for other commands. PR: kern/103602 MFC after: 2 weeks
* (atapi_cb): Fix test for the presence of sense data. An incorrect conditionthomas2007-04-301-2/+2
| | | | | | | | was being tested, which would result in a system hang in some configurations. PR: kern/112119 Reviewed by: scottl MFC after: 3 days
* Eliminate error with -W* strict flags and make putenv() calls conforming toache2007-04-301-3/+3
| | | | standard and portable in the same way as f.e. gcc internal portable code does.
* Eliminate error with -W* strict flags and make putenv() calls conforming toache2007-04-301-4/+4
| | | | standard in the same way as f.e. gcc internal portable code does.
* Remove special case skipping initial '=' of the setenv() value "forache2007-04-302-7/+0
| | | | | | | | | compatibility with the different environment conventions" (man page). With the standards, we don't have them different anymore and IEEE Std 1003.1-2001 says that "The values that the environment variables may be assigned are not restricted except that they are considered to end with a null byte"
* Fix unsetenv and putenv prototypes to conform Open Group specs Issue 6ache2007-04-301-2/+2
| | | | (also IEEE Std 1003.1-2001)
* Make setenv, putenv, getenv and unsetenv conforming to Open Group specsache2007-04-304-19/+48
| | | | | | | | | Issue 6 (also IEEE Std 1003.1-2001) in following areas: args, return, errors. Putenv still needs rewriting because specs explicitly says that altering passed string later should change the environment (currently we copy the string so can't provide that).
* - Define d_type for ".", ".." and ".zfs" directories.pjd2007-04-294-0/+10
| | | | - Add a TODO comment where d_type is still noe defined.
* Oops, correct important typo in last commit.pjd2007-04-292-2/+2
|
* Avoid freeing NULL pointer in case of an error.pjd2007-04-292-2/+2
|
* Add missing links and sort.pjd2007-04-291-3/+9
|
* Change the date for Daylight Savings in the US.dwmalone2007-04-291-2/+2
| | | | | | PR: 111102 Submitted by: Sean Farley <sean-freebsd@farley.org> Obtained from: OpenBSD
* Document requirements to calling rman_init... (Hmmm, maybe we should makejmg2007-04-291-1/+16
| | | | | | these areguments to rman_init?) MFC after: 1 week
* Don't enable symbol versioning for librt by default just yet.deischen2007-04-291-0/+2
|
* Don't expose #ifdef NOTYET parts to userspace via audit_ioctl.h, justrwatson2007-04-291-3/+0
| | | | | | | remove them, since the functionality they are associated with isn't there yet. MFC after: 3 days
* Make sure FBSDprivate_1.0 is located at the end of the versionkan2007-04-291-1/+1
| | | | inheritance chain.
* Retire rtld-specific Versions.def. Symbols exported by rtld are supposedkan2007-04-292-9/+3
| | | | | | | to override weak symbols exported by libc, so by definition these two are using the same symbol version names. Reflect the reality by referring to libc's Versions.def directly.
* Catch up with the renaming of the private version namespace.deischen2007-04-292-2/+2
|
* Give the private version namespace a number to match libc.deischen2007-04-291-1/+1
|
* Use C comments since we now preprocess these files with CPP.deischen2007-04-2943-217/+319
|
* Number the private version namespace in case we ever want to havedeischen2007-04-291-1/+1
| | | | compatibility between versions (as we do for the public namespace).
* Symbol version librt.deischen2007-04-292-0/+71
|
* Use CPP to preprocess version map files so we can conditionalize symbols.deischen2007-04-291-2/+4
|
* New release notes:brueffer2007-04-291-9/+24
| | | | | | | | | | | | - edsc(4) added - pmcstat(4) -c and -t flags, defaults changed - rpcbind -h and -6 flags Modified release notes: - Moved pmcstat information from kernel to userland section - MSI-X supported as well, remove ref to pci(4) manpage, which is different from the kernel's PCI code - rpc.lockd/rpc.statd entry moved to the right place
* Fix two use-after-free cases.pjd2007-04-292-4/+4
|
* Minor correction: s/sg/scsi_sg/bmah2007-04-281-1/+1
|
* New release note: FreeBSD-SA-07:03.ipv6.bmah2007-04-281-0/+5
|
* Complete removal of restriction about overlaps to rman_manage_region:jmg2007-04-282-9/+16
| | | | | | | | remove comment and man page verbage... Document return values for rman_init and rman_manage_region.. MFC after: 1 week
* Add some more examples. It always takes me a long time to find the Sbrian2007-04-271-2/+27
| | | | | | modifier (-t is ignored without it). MFC after: 1 week
* - Add my mentor stas and my comentor itetcu.araujo2007-04-271-0/+4
| | | | Approved by: itetcu (comentor)
* - Added entry for Marcelo S. Araujo.araujo2007-04-271-0/+1
| | | | Approved by: itetcu (comentor)
* Only schedule the xpt_finishconfig_task once. This fixes some potentialscottl2007-04-271-4/+6
| | | | panics on boot.
* -Fix an mbuf leak caused by a cut&paste bug where the small ring's mbufsgallatin2007-04-271-19/+35
| | | | | | | | | were never freed, but the big ring was freed twice. -Don't supply rx hw csums for frames which are padded beyond the length specified in the ip header. If the padding is non-zero, the hw csum will be incorrect for such frames. Sponsored by: Myricom
* MFP4: Enhancements to pmcstat(8):jkoshy2007-04-274-69/+184
| | | | | | | | | | - Allow the "-t" option to take a regular expression naming command line processes to attach process PMCs to. - Update the manual page and add an example showing the use of the new functionality. - Update the (c) year on the affected source files.
* Increase the verbosity of the warning given when this file is used asbenjsc2007-04-271-1/+1
| | | | | | | | | part of the old tty system - helping the user to know how to transition to the new tty api. Approved by: mlaier (Mentor) PR: kern/110667
* A forced follow-up commit for the MSG_PEEK removal just to note that...roam2007-04-270-0/+0
| | | | MFC after: 1 week
* Remove the MSG_PEEK flag from the documentation of the send(2) syscall -roam2007-04-271-1/+0
| | | | | | | | it is only relevant to receiving data from sockets, not to sending. PR: 109667 Submitted by: Jari Kirma <kirma@cs.hut.fi> Approved by: wollman
* Put the scheme (APM, GPT, etc) in the XML.marcel2007-04-271-1/+3
|
OpenPOWER on IntegriCloud