summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This file is being removed pending the all clear on its licence by someonedarrenr2002-03-191-275/+0
| | | | else.
* This commit was generated by cvs2svn to compensate for changes in r92680,darrenr2002-03-193-0/+676
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import IPFilter 3.4.25 (last version 3.4.20)darrenr2002-03-193-0/+676
| |
| * This commit was manufactured by cvs2svn to create branchcvs2svn2001-09-121-0/+29
| | | | | | | | 'VENDOR-sys-ipfilter'.
| * Import version 3.4.20 of IPFilterdarrenr2001-07-2818-510/+862
| |
| * Update IP Filter kernel sourcedarrenr2001-02-0414-119/+259
| |
| * Import IP filter 3.4.13darrenr2000-10-298-48/+58
| |
| * Import IP Filter 3.4.12 into kernel source treedarrenr2000-10-2614-192/+613
| |
| * Import IP Filter 3.4.9 bits into the kerneldarrenr2000-08-1310-102/+367
| |
| * import ipfilter 3.4.8darrenr2000-07-1913-112/+226
| |
| * Import IP Filter 3.4.4 into the kerneldarrenr2000-05-2420-2519/+6875
| |
| * This commit was manufactured by cvs2svn to create branchcvs2svn1999-12-063-0/+612
| | | | | | | | 'VENDOR-sys-ipfilter'.
* | Enabling the SKI option is a guaranteed breakage for me. Interrupts nopeter2002-03-191-1/+4
| | | | | | | | | | longer work. I can only get a box to boot with 'options SMP'.
* | My ia64 box for some reason likes to fragment the beginning/end of memorypeter2002-03-191-1/+1
| | | | | | | | | | | | | | a bit before handing it over to the OS. I occasionally have 11 segments with several 8K or so fragments depending on nvram settings and what I have done under loader(8) before booting. This needs to be revisited.
* | Fix some unused variables.peter2002-03-193-1/+5
| |
* | Move a couple of prototypes together instead of being incompletelypeter2002-03-194-7/+4
| | | | | | | | scattered around.
* | __func__ is a const char *, not a "string" that can be concatenated.peter2002-03-191-3/+3
| |
* | Fix a pointer/int warningpeter2002-03-191-1/+1
| |
* | #ifdef SMP some variables that are only used elsewhere under #ifdef SMPpeter2002-03-191-0/+2
| | | | | | | | also.
* | Work around an apparent compiler bug with gcc-3.1, although it might bepeter2002-03-191-2/+5
| | | | | | | | | | | | a language feature that I do not know about. gcc is complaining about a left shift >= sizeof type, even when shifting a (cast) 64 bit type left by 43 bits.
* | Believe it or not, I ran into the 32MB stack size limit using a nativelypeter2002-03-191-1/+1
| | | | | | | | hosted gcc.
* | #if 0 out some unused code.peter2002-03-192-0/+5
| |
* | Add some #includes after things got broken with the last round ofpeter2002-03-192-0/+3
| | | | | | | | MI include file (<sys/smp.h> I think) tweaks.
* | Turn off the ia64 ITC timecounter when SMP is present since it has thepeter2002-03-191-0/+10
| | | | | | | | | | same problem as the TSC on the x86 - ie: it is not synchronized. #if 0 out some unused functions, ia64 doesn't calibrate clocks yet.
* | Fix a gcc-3.1+ warning.peter2002-03-197-0/+16
| | | | | | | | | | | | | | | | | | | | | | warning: deprecated use of label at end of compound statement ie: you cannot do this anymore: switch(foo) { .... default: }
* | Pacify gcc-3.1+, initialize two variables to avoid -Wuninitializedpeter2002-03-191-2/+2
| | | | | | | | warnings.
* | Fix warnings on gcc-3.1+ where __func__ is a const char * instead of apeter2002-03-191-2/+2
| | | | | | | | string.
* | Regen; post SMC id's and also pick up a previously forgotten regen(?).peter2002-03-192-2/+49
| |
* | Add another SMC device ID and the hub ID that it went with.peter2002-03-191-0/+3
| |
* | Add the ia64 bus space tag for the IO ports (!).peter2002-03-192-0/+8
| | | | | | | | Add a #else and #error so that this doesn't go unnoticed again.
* | Use the FreeBSD cross tools instead of the linux ones.peter2002-03-191-9/+9
| |
* | Add -ffreestanding to avoid printf/puts/putchar conversionspeter2002-03-194-0/+4
| |
* | Boot from efifs first.peter2002-03-192-2/+2
| |
* | gcc-3.1 likes to have extra { } around the internal array initializers inpeter2002-03-191-5/+5
| | | | | | | | the GUID templates.
* | This is the first part of the new kernel memory allocator. This replacesjeff2002-03-1935-489/+3181
| | | | | | | | | | | | malloc(9) and vm_zone with a slab like allocator. Reviewed by: arch@
* | Remove the kmembuckets stats in preparation for the UMA commit.jeff2002-03-191-68/+9
| |
* | Backed out the part of the previous commit related to xargs. It justbde2002-03-191-6/+4
| | | | | | | | | | broke things, since "name=value ... cmd ..." only works for simple commands (not for pipelines).
* | Add #include so that the previous change compiles.alc2002-03-191-0/+1
| |
* | Removed env(1) commands. make(1) uses a real shell, andbde2002-03-191-14/+16
| | | | | | | | | | | | | | "env name=value ... cmd ..." is just a pessimized way of doing "name=value ... cmd ..." in real shells. Set the environment (without using env(1)) before starting xargs so that env(1) is not needed in "xargs env name=value ... cmd ..."
* | fix perfmon for DEVFS.alfred2002-03-191-0/+16
| | | | | | | | PR: kern/36008
* | Removed bogus env(1) commands. make(1) uses a real shell, sobde2002-03-192-5/+5
| | | | | | | | | | | | | | | | "env name=value ... cmd ..." was just a pessimized way of doing "name=value ... cmd ...". Note that make(1) can't optimize either of these to an exec of env(1) or "cmd" even if the second "..." is simple, since it can't tell that the shell metacharacter in "name=value" is actually handled by env(1).
* | Removed "env" commands. "sh" is a real shell, sobde2002-03-191-2/+2
| | | | | | | | | | "env name=value ... sh ..." was just a pessimized way of doing "name=value ... sh ...".
* | MFen 1.303ue2002-03-191-2/+13
| |
* | Initialize variables before use. This was needed to pass -Werror.jeff2002-03-191-0/+4
| | | | | | | | Reviewed by: jake
* | Eliminate unnecessary calls to grow_stack() and useracc() from linux_sendsig()alc2002-03-191-49/+5
| | | | | | | | and linux_rt_sendsig(). (See i386/i386/machdep.c revisions 1.503 and 1.504.)
* | Close a race when vfs_syscalls.c:checkdirs() runs.alfred2002-03-193-15/+31
| | | | | | | | | | To do this protect the filedesc pointer in the proc with PROC_LOCK in both checkdirs() and kern_descrip.c:fdfree().
* | Fixed some printf format errors (hopefully all of the remaining daddr64_tbde2002-03-192-13/+16
| | | | | | | | | | | | ones for GENERIC, and all others on the same line as those). Reformat the printfs if necessary to avoid new long lones or old format printf errors.
* | The previous commit missed fixing 2 old printf format errors andbde2002-03-191-3/+3
| | | | | | | | introduced a format printf error.
* | Don't try to generate ssh keys if ssh isn't installed.des2002-03-197-49/+77
| |
* | Fix handling of filenames with spaces in them in the input file tojmallett2002-03-191-1/+1
| | | | | | | | | | | | | | | | | | | | uudecode(1), as this behaviour was explicitly added in revision 1.12 as the result of PR 2882. Remove space (' ') from the delimiter characters handed to strtok(3). Reviewed by: mike Approved by: mike Pointy hat to: me
OpenPOWER on IntegriCloud