summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Re-add description of putc() macro (back out rev. 1.13.)tjr2004-03-171-2/+8
|
* Re-add text that says getc() is a macro (back out rev. 1.16.)tjr2004-03-171-1/+2
|
* This commit was generated by cvs2svn to compensate for changes in r127114,nectar2004-03-171-0/+8
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Correct a denial-of-service vulnerability in OpenSSL (CAN-2004-0079).nectar2004-03-171-0/+8
| | | | | | | | Obtained from: OpenSSL CVS (http://cvs.openssl.org/chngview?cn=12033)
* | Correct a grammatical error.ceri2004-03-171-1/+1
| | | | | | | | | | | | PR: docs/63984 Submitted by: Ulrich Spoerlein <q@uni.de> MFC after: 1 day
* | Improved incorrect usage diagnostics.ru2004-03-171-2/+6
| |
* | Trust bsd.prog.mk to set SRCS correctly.ru2004-03-171-1/+0
| |
* | GC unnecessary include file.ru2004-03-172-38/+0
| |
* | Adjust the number of processes waiting on a semaphore properly if we'recperciva2004-03-171-6/+12
| | | | | | | | | | | | | | | | woken up in the middle of sleeping. PR: misc/64347 Reviewed by: tjr MFC after: 7 days
* | Move the _arlconfig define in the existing i386 section.nyan2004-03-171-3/+1
| | | | | | | | Suggested by: ru
* | This commit was generated by cvs2svn to compensate for changes in r127105,obrien2004-03-173-1388/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | Avoid the whole -I${DESTDIR}/usr/include/gnu issue by includingobrien2004-03-172-6/+5
| | | | | | | | <gnu/regex.h> vs. just <regex.h>.
* | Adjust $FreeBSD$'s.obrien2004-03-172-5/+1
| |
* | Fix a POSIX conformance bug. POSIX says sigwait should return error numberdavidxu2004-03-172-6/+6
| | | | | | | | in return value not in errno.
* | Add a tip for people who are using database-related ports on a sparc64gad2004-03-171-0/+7
| | | | | | | | | | | | system that they intend to upgrade to 64-bit time_t. Noticed by: Roderick van Domburg
* | Re-add macro versions of getc(), getchar(), putc(), putchar(), feof(),tjr2004-03-177-34/+28
| | | | | | | | | | | | | | ferror(), fileno() and clearerr(), using the value of __isthreaded to decide between the fast inline single-threaded code and the more general function equivalent. This gives most of the performance benefits of the old unsafe macros while preserving thread safety.
* | Remove tun_proc; replace with tun_pid. tun_proc pointer may be stalerwatson2004-03-171-7/+14
| | | | | | | | | | | | | | | | as the process that opens tun_softc can exit before the file descriptor is closed. Taiwan experience provided by: keichii Crashing breakers provided by: Chia-liang Kao <clkao@clkao.org>
* | Add tap_mtx to tap_softc in order to protect per-softc variablesrwatson2004-03-172-2/+44
| | | | | | | | | | | | | | (tap_pid, tap_flags). if_tap should now be entirely MPSAFE. Committed from: Bamboo house by ocean in Taiwan Tropical paradise provided by: Chia-liang Kao <clkao@clkao.org>
* | Implement "arlconfig arlX quality".fjoe2004-03-168-328/+226
| | | | | | | | | | | | Man pages fixes. Submitted by: Stanislav A. Svirid <count@riss-telecom.ru>
* | New release note:hrs2004-03-162-0/+10
| | | | | | | | libdisk's u_long->d_addr_t change.
* | Avoid doing bawrite to initialize inode block while holding cylinderkan2004-03-161-1/+3
| | | | | | | | | | | | | | | | | | | | group block locked. If filesystem has any active snapshots, bawrite can come back trying to allocate new snapshot data block from the same cylinder group and cause panic due to recursive lock attempt. PR: 64206 Reviewed by: mckusick Tested by: pjd
* | Run through indent(1) so I can read the code without getting a headache.des2004-03-1628-10634/+10466
| | | | | | | | | | The result isn't quite knf, but it's knfer than the original, and far more consistent.
* | Fix copyrights and mandoc markup.fjoe2004-03-163-22/+23
| | | | | | | | Pointed out by: ru
* | Use void * instead of char * to avoid violating C99 strict aliasing rules.des2004-03-161-17/+12
| |
* | Use unions to avoid violating C99 strict aliasing rules.des2004-03-166-43/+50
| |
* | Approved by: mat (mentor).thierry2004-03-161-0/+1
| |
* | Add explicit dependency on "ether", since we use ether_ifattach().mux2004-03-161-0/+1
| |
* | Refactor the existing machine-dependent sf_buf_free() into a machine-alc2004-03-1610-127/+48
| | | | | | | | | | | | | | | | | | | | dependent function by the same name and a machine-independent function, sf_buf_mext(). Aside from the virtue of making more of the code machine- independent, this change also makes the interface more logical. Before, sf_buf_free() did more than simply undo an sf_buf_alloc(); it also unwired and if necessary freed the page. That is now the purpose of sf_buf_mext(). Thus, sf_buf_alloc() and sf_buf_free() can now be used as a general-purpose emphemeral map cache.
* | Remove a bogus assertion and readd it in a more correct location. A threadjhb2004-03-161-1/+1
| | | | | | | | | | | | | | | | | | might be enqueued on a sleep queue but not be asleep when the timeout fires if it is blocked on a lock trying to check for pending signals before going to sleep. In the case of fixing up the TDF_TIMEOUT race, however, the thread must be marked asleep. Reported by: kan (the bogus one)
* | Added entries for 90 columns russian VGA modes.schweikh2004-03-161-0/+22
| | | | | | | | | | | | PR: conf/51830 Submitted by: Sergiy Vyshnevetskiy <serg@vostok.net> MFC after: 1 week
* | Fix $FreeBSD$ ids.obrien2004-03-1611-11/+29
| |
* | Change libdisk and sysinstall to use d_addr_t rather than u_long for diskjhb2004-03-1610-167/+190
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | addresses. For arch's with 64-bit longs, this is a nop, but for i386 this allows sysinstall to properly handle disks and filesystems > 1 TB. Changes from the original patch include: - Use d_addr_t rather than inventing a blkcnt type based on int64_t. - Use strtoimax() rather than strtoull() to parse d_addr_t's from config files. - Use intmax_t casts and %jd rather than %llu to printf d_addr_t values. Tested on: i386 Tested by: kuriyama Submitted by: julian MFC after: 1 month
* | Update the SiS support to distinguish older southbridges better.sos2004-03-162-9/+21
| |
* | New release note:hrs2004-03-162-0/+8
| | | | | | | | raid(4) removal.
* | o Add an -S option to not attempt to ascertain the validity of a shell.mtm2004-03-162-13/+59
| | | | | | | | | | | | | | o Add a -D option to not attempt to create the home directory. o Treat the /nonexistent home directory specially. It means the user has no home directory and it should not be created. o Update Copyright year and my email.
* | Remove dangling raidctl referencephk2004-03-161-1/+1
| |
* | Add powerpc to temporary fix. The new cpu device claims allgrehan2004-03-161-2/+2
| | | | | | | | | | 'generic' OpenFirmware nexus nodes, since it uses bus_generic_probe. Maybe the cpu device probe should be MD.
* | Refer to "wide characters" instead of "wide-characters".tjr2004-03-163-15/+15
| |
* | The arlconfig is needed on i386 only.nyan2004-03-161-0/+2
| |
* | Move the arl to i386 only.nyan2004-03-161-1/+1
| |
* | Don't use the pcic polling.nyan2004-03-161-1/+1
| |
* | Remove the RAIDframe manual pagescottl2004-03-162-396/+0
| |
* | Remove the RAIDframe userland tool.scottl2004-03-165-3031/+0
| |
* | Remove the module reference for RAIDframescottl2004-03-161-1/+0
| |
* | Remove RAIDFrame. It hasn't worked since GEOM replaced the old diskscottl2004-03-16138-42458/+0
| | | | | | | | | | | | mini-layer. I don't have time to bing it forward into the GEOM world, and no one else has stepped forward to claim it. It'll be in the Attic for safe keeping for now.
* | Given the impact of CFLAGS and COPTFLAGS on the build, report them indes2004-03-161-3/+3
| | | | | | | | the log, even when not verbose.
* | Whitespace nit.des2004-03-161-1/+1
| |
* | Sort MLINKS.tjr2004-03-161-1/+1
| | | | | | | | Noticed by: ru
* | Nudge Giant as far as I can into kern_open(). Mark open() as MPSAFE.dwmalone2004-03-167-26/+30
| | | | | | | | | | | | | | | | Use kern_open() to implement creat() rather than taking the long route through open(). Mark creat as MPSAFE. While I'm at it, mark nosys() (syscall 0) as MPSAFE, for all the difference it will make.
* | Get ready to mark open, creat and nosys as MPSAFE.dwmalone2004-03-161-3/+3
| |
OpenPOWER on IntegriCloud