summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Allow the VESA code to handle devices that don't claim to be VGA devices.jhb2005-06-011-2/+0
| | | | | | | | | | | | | | | | This fixes VESA support when running under vmware. PR: i386/81445 Submitted by: Jia-Shiun Li jiashiun at gmail dot com MFC after: 1 week
* | Remove the C99-specific __func__ that is one of the few barrier tokientzle2005-06-017-37/+39
| | | | | | | | | | | | | | | | | | compiling on IRIX and Solaris. Remove the "archive_check_magic" macro that existed only to provide __func__ to the underlying __archive_check_magic function. Thanks to: Darin Broady MFC after: 14 days
* | <Ooops> Two lines got dropped from the previous commit. Apologies.kientzle2005-06-011-0/+2
| | | | | | | | MFC after: 14 days
* | A minor refinement to "pax" output: Remove suid/sgid/sticky bitskientzle2005-06-013-0/+38
| | | | | | | | | | | | | | | | from mode before using mode for extended attributes entry, copy mtime/atime/ctime to extended attributes entry so it's a little more clear that it corresponds to the like-named regular entry. MFC after: 14 days
* | Temperarly disable building in the bzip2 support by default so we can fitobrien2005-06-011-1/+1
| | | | | | | | on the i386 floppies. Sigh, I hate floppies.
* | Fix some warnings on 64-bit archs.jhb2005-06-011-6/+7
| | | | | | | | Reviewed by: sam
* | Typo.jhb2005-06-011-1/+1
| | | | | | | | Submitted by: njl
* | o Teach login(1) to respect "hushlogin" and "nocheckmail" attributesmaxim2005-06-011-2/+7
| | | | | | | | | | | | | | | | defined in user's $HOME/.login_conf. PR: bin/75001 Submitted by: Rostislav Krasny MFC after: 2 weeks
* | When aborting tcp_attach() due to a problem allocating or attaching therwatson2005-06-011-0/+2
| | | | | | | | | | | | | | tcpcb, lock the inpcb before calling in_pcbdetach() or in6_pcbdetach(), as they expect the inpcb to be passed locked. MFC after: 7 days
* | Assert tcbinfo lock, inpcb lock in tcp_disconnect().rwatson2005-06-011-1/+8
| | | | | | | | | | | | Assert tcbinfo lock, inpcb lock in in tcp_usrclosed(). MFC after: 7 days
* | Assert tcbinfo lock in tcp_drop() due to its call of tcp_close()rwatson2005-06-012-0/+12
| | | | | | | | | | | | | | Assert tcbinfo lock in tcp_close() due to its call to in{,6}_detach() Assert tcbinfo lock in tcp_drop_syn_sent() due to its call to tcp_drop() MFC after: 7 days
* | Assert that tcbinfo is locked in tcp_input() before calling intorwatson2005-06-012-2/+18
| | | | | | | | | | | | tcp_drop(). MFC after: 7 days
* | Assert the tcbinfo lock whenever tcp_close() is to be called byrwatson2005-06-012-0/+22
| | | | | | | | | | | | tcp_input(). MFC after: 7 days
* | Assert tcbinfo lock in tcp_attach(), as it is required; the callerrwatson2005-06-011-0/+2
| | | | | | | | | | | | (tcp_usr_attach()) currently grabs it. MFC after: 7 days
* | Commit correct version of previous commit (in_pcb.c:1.164). Use therwatson2005-06-011-2/+2
| | | | | | | | | | | | local variables as currently named. MFC after: 7 days
* | Assert pcbinfo lock in in_pcbdisconnect() and in_pcbdetach(), as therwatson2005-06-011-0/+3
| | | | | | | | | | | | global pcb lists are modified. MFC after: 7 days
* | Slight white space tweak.rwatson2005-06-011-0/+1
| | | | | | | | MFC after: 7 days
* | Lock udbinfo and inp before calling in6_pcbdetach() from udp6_abort().rwatson2005-06-011-1/+6
| | | | | | | | MFC after: 1 week
* | Add a test for escaped newline handling.harti2005-06-018-0/+45
| |
* | Add support for TODO tests. These are tests that are supposed to fail,harti2005-06-012-23/+43
| | | | | | | | because of a make bug that should be fixed.
* | De-spl UDP.rwatson2005-06-011-31/+5
| | | | | | | | MFC after: 3 days
* | Add a handy macro to represent null mount option, MOPT_NULL, and makedelphij2005-06-0116-15/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | use of the macro in sbin/mount*'s, by replacing: mopts[] = { MOPT_STDOPTS, { NULL } } With: mopts[] = { MOPT_STDOPTS, MOPT_NULL } This change will help to reduce the situation that we don't explicitly initialize "struct mntopt"'s. It should not contribute to any functional/logical changes as far as I can tell.
* | Adding note about required firmware to save others time and frustration withavatar2005-06-011-0/+13
| | | | | | | | | | | | | | this device. Obtained from: imp (if_iwi) Encouraged by: damien
* | Add a text description for the Intel IOP302/303 processors. Be slightlyscottl2005-06-013-2/+7
| | | | | | | | | | | | | | | | more verbose about the allocation of RAM on the controller. Sbumitted by: Jeremy Chadwick PR: kern/81259 MFC-After: 3 days
* | Printing a warning once when trying to bring up interface before firmware load.avatar2005-06-012-0/+4
| | | | | | | | | | Obtained from: imp (if_iwi) Reviewed by: damien
* | Don't use a patch w/in /usr/src. Programmatically change files when needed.obrien2005-05-312-25/+3
| |
* | Don't enable I/O or memory mode in a device's command register if the BARjhb2005-05-311-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | we are processing has a base address of zero. Note that this will only change behavior for devices where all the BARs of a given type have a base address of 0 since we will enable the appropriate access when we encounter the first BAR with a base that is not 0. Specifically, this allows certain Toshiba laptops to no longer require 'hw.pci.enable_io_modes=0' to avoid hangs during boot. PR: kern/20040 PR: i386/63776 (possibly) PR: i386/68900 (possibly) PR: i386/74532 (possibly) MFC after: 1 week
* | Add a missing const to alpha_setcurrdev() to quiet a warning.jhb2005-05-312-2/+2
| |
* | Change the type the buf arg to the strategy routines from void * to char *jhb2005-05-311-4/+4
| | | | | | | | to quiet some warnings.
* | Whitespace.jhb2005-05-311-1/+1
| |
* | Initialise `hex' at the top of the file, ISO C requires that an array withstefanf2005-05-311-6/+5
| | | | | | | | internal linkage has a complete type.
* | Put bzip2 support on equal footing with gzip support.obrien2005-05-311-1/+1
| | | | | | | | | | | | Enable bzip2 support by default, set LOADER_NO_BZIP2_SUPPORT to disable it. Pointy hat to: sobomax
* | Back out revision 1.51, it is wrong. We don't litter -I's within libobrien2005-05-311-1/+1
| | | | | | | | Makefiles to get headers from /usr/src vs. the standard include paths.
* | Remove #ident directives, they don't exist on the vendor branch anymore.stefanf2005-05-319-9/+1
| |
* | Reassert some maintainership. People aren't using good judgment.obrien2005-05-311-0/+4
| |
* | Use __FBSDID() over #ident.stefanf2005-05-314-4/+8
| |
* | Use %z to print size_t values.jhb2005-05-312-2/+2
| |
* | Just use uintptr_t and intptr_t rather than requiring each arch to providejhb2005-05-311-24/+2
| | | | | | | | explicit int/long typedefs.
* | Move #ident into #if 0.stefanf2005-05-319-18/+9
| |
* | Add a missing END() to quiet a warning.jhb2005-05-311-0/+1
| |
* | Mark _thread_exit() and __sys_exit() as __dead2 to quiet some warnings.jhb2005-05-311-2/+2
| |
* | Style tweak.jhb2005-05-311-1/+2
| |
* | This patch addresses a standards violation issue. The standards say akensmith2005-05-313-1/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | file's access time should be updated when it gets executed. A while ago the mechanism used to exec was changed to use a more mmap based mechanism and this behavior was broken as a side-effect of that. A new vnode flag is added that gets set when the file gets executed, and the VOP_SETATTR() vnode operation gets called. The underlying filesystem is expected to handle it based on its own semantics, some filesystems don't support access time at all. Those that do should handle it in a way that does not block, does not generate I/O if possible, etc. In particular vn_start_write() has not been called. The UFS code handles it the same way as it would normally handle the access time if a file was read - the IN_ACCESS flag gets set in the inode but no other action happens at this point. The actual time update will happen later during a sync (which handles all the necessary locking). Got me into this: cperciva Discussed with: a lot with bde, a little with kan Showed patches to: phk, jeffr, standards@, arch@ Minor discussion on: arch@
* | Ensure GCC does not use FP registers in integer code.obrien2005-05-311-0/+1
| | | | | | | | | | I really don't like cluttering up the compiler invocation, but this bigger hammer will fix reported problems for now.
* | o Missed colon in getopt(3) argument makes tftpd(8) crash. Fix that.maxim2005-05-311-1/+1
| | | | | | | | | | | | PR: misc/81732 Submitted by: Denis Grudkin MFC after: 2 weeks
* | According to:rodrigc2005-05-313-56/+98
| | | | | | | | | | | | | | | | | | | | | | http://www.opengroup.org/onlinepubs/009695399/basedefs/sys/types.h.html #include <sys/types.h> should include the definitions of pthread types. PR: standards/78907 Reported by: Brooks Davis Approved by: das (mentor)
* | Do not declare a struct as extern, and then implementrodrigc2005-05-311-59/+57
| | | | | | | | | | | | | | | | it as static in the same file. This is not legal C, and GCC 4.0 will issue an error. Reviewed by: phk Approved by: das (mentor)
* | Change the test infrastructure so that tests are easier to maintain andharti2005-05-31192-623/+910
| | | | | | | | | | | | | | | | | | | | | | | | | | | | so that make(1) will run in an almost clean environment and enhance the description of the test infrastructure. Add the ability to have multiple tests carried out per test script. Give some tests more meaningful names. Fix the usage message from the test scripts. Make it possible to pass several commands to the test scripts like: 'sh test.t setup run compare clean'.
* | The new name for the DIAGNOSTICS section is EXIT STATUS.tjr2005-05-311-1/+1
| | | | | | | | Noticed by: ru
* | Pass the RE_ICASE flag to re_set_syntax() as appropriate to fixtjr2005-05-311-3/+3
| | | | | | | | | | | | case-insensitive matching (-i option) in certain multibyte locales. Obtained from: Fedora
OpenPOWER on IntegriCloud