Searched hist:1.190 (Results 1 - 25 of 279) sorted by relevance

1234567891011>>

/src/sys/arch/sparc/sparc/
H A Dtrap.c1.190 Tue May 01 09:40:15 GMT 2012 martin branches: 1.190.2; 1.190.4;
On unaligned access, provide the data address to the signal handler, instead
of the faulting instructions address.
1.190 Tue May 01 09:40:15 GMT 2012 martin branches: 1.190.2; 1.190.4;
On unaligned access, provide the data address to the signal handler, instead
of the faulting instructions address.
1.190 Tue May 01 09:40:15 GMT 2012 martin branches: 1.190.2; 1.190.4;
On unaligned access, provide the data address to the signal handler, instead
of the faulting instructions address.
1.190 Tue May 01 09:40:15 GMT 2012 martin branches: 1.190.2; 1.190.4;
On unaligned access, provide the data address to the signal handler, instead
of the faulting instructions address.
1.190 Tue May 01 09:40:15 GMT 2012 martin branches: 1.190.2; 1.190.4;
On unaligned access, provide the data address to the signal handler, instead
of the faulting instructions address.
1.190 Tue May 01 09:40:15 GMT 2012 martin branches: 1.190.2; 1.190.4;
On unaligned access, provide the data address to the signal handler, instead
of the faulting instructions address.
/src/sys/arch/mips/mips/
H A Dmips_machdep.c1.190 Mon Oct 23 19:49:47 GMT 2006 he branches: 1.190.2; 1.190.4;
Constify, since the new gcc propagates constness to struct members.
1.190 Mon Oct 23 19:49:47 GMT 2006 he branches: 1.190.2; 1.190.4;
Constify, since the new gcc propagates constness to struct members.
1.190 Mon Oct 23 19:49:47 GMT 2006 he branches: 1.190.2; 1.190.4;
Constify, since the new gcc propagates constness to struct members.
/src/sys/arch/sparc64/sparc64/
H A Dpmap.c1.190 Wed May 23 09:36:22 GMT 2007 martin branches: 1.190.4; 1.190.8;
In pmap_kenter_pa honour VM_PROT_EXECUTE - otherwise LKMs are not mapped
executable.
Fixes PR port-sparc64/36376.
1.190 Wed May 23 09:36:22 GMT 2007 martin branches: 1.190.4; 1.190.8;
In pmap_kenter_pa honour VM_PROT_EXECUTE - otherwise LKMs are not mapped
executable.
Fixes PR port-sparc64/36376.
1.190 Wed May 23 09:36:22 GMT 2007 martin branches: 1.190.4; 1.190.8;
In pmap_kenter_pa honour VM_PROT_EXECUTE - otherwise LKMs are not mapped
executable.
Fixes PR port-sparc64/36376.
1.190 Wed May 23 09:36:22 GMT 2007 martin branches: 1.190.4; 1.190.8;
In pmap_kenter_pa honour VM_PROT_EXECUTE - otherwise LKMs are not mapped
executable.
Fixes PR port-sparc64/36376.
1.190 Wed May 23 09:36:22 GMT 2007 martin branches: 1.190.4; 1.190.8;
In pmap_kenter_pa honour VM_PROT_EXECUTE - otherwise LKMs are not mapped
executable.
Fixes PR port-sparc64/36376.
1.190 Wed May 23 09:36:22 GMT 2007 martin branches: 1.190.4; 1.190.8;
In pmap_kenter_pa honour VM_PROT_EXECUTE - otherwise LKMs are not mapped
executable.
Fixes PR port-sparc64/36376.
1.190 Wed May 23 09:36:22 GMT 2007 martin branches: 1.190.4; 1.190.8;
In pmap_kenter_pa honour VM_PROT_EXECUTE - otherwise LKMs are not mapped
executable.
Fixes PR port-sparc64/36376.
1.190 Wed May 23 09:36:22 GMT 2007 martin branches: 1.190.4; 1.190.8;
In pmap_kenter_pa honour VM_PROT_EXECUTE - otherwise LKMs are not mapped
executable.
Fixes PR port-sparc64/36376.
1.190 Wed May 23 09:36:22 GMT 2007 martin branches: 1.190.4; 1.190.8;
In pmap_kenter_pa honour VM_PROT_EXECUTE - otherwise LKMs are not mapped
executable.
Fixes PR port-sparc64/36376.
H A Dmachdep.c1.190 Wed Sep 13 11:35:53 GMT 2006 mrg branches: 1.190.2;
SMP cleanup. provide support for multiple CPUs in DDB. (SMP itself
is still not working.)

cpu.h:
- add a pointer for DDB regs in SMP environment to struct cpu_info
- remove the #defines for mp_pause_cpus() and mp_resume_cpus()
cpuset.h:
- remove CPUSET_ALL() and rename CPUSET_ALL_BUT() to CPUSET_EXCEPT()
from petrov.
db_machdep.h:
- rename the members of db_regs_t to be the same as sparc
- change "db_regs_t ddb_regs" to "db_regs_t *ddb_regp" and change
all references to suit
- redo DDB_REGS to no longer be a pointer to a fixed data structure
but to one allocated per-cpu when ddb is entered
- move a bunch of prototypes in here
intr.h:
- remove SPARC64_IPI_* macros, no longer used
db_interface.c:
- change "db_regs_t ddb_regs" to "db_regs_t *ddb_regp" and change
all references to suit
- make "nil" a 64 bit entity
- change the ddb register access methods to work in multiprocessor
environment, it is now very much like sparc does it
- in kdb_trap() avoid accessing ddb_regp when it is NULL
- update several messages to include the cpu number
- unpause other cpus much later when resuming from ddb
- rename db_lock() to db_lock_cmd(), as the sparc-like code has
db_lock as a simple lock
- remove "mach cpus" command, and replace it with "mach cpu" (which
does the same) and also implement "mach cpu N" to switch to
another cpus saved trapframe
db_trace.c:
- update for the ddb_regs -> ddb_regp change
genassym.cf:
- add TF_KSTACK as offsetof(struct trapframe64, tf_kstack)
ipifuncs.c:
- overhaul extensively
- remove all normal interrupt handlers as IPI's, we now handle
them all specially in locore.s:interrupt_vector
- add a simplelock around all ipi functions - it's not safe for
multiple cpus to be sending IPI's to each other right now
- rename sparc64_ipi_pause() to sparc64_ipi_pause_thiscpu() and,
if DDB is configured, enable it to save the passed-in trapframe
to a db_regs_t for this cpu's saved DDB registers.
- remove the "ipimask" system (SPARC64_IPI_* macros) and instead
pass functions directly
- in sparc64_send_ipi() always set the interrupt arguments to 0,
the address and argument of the to be called function. (the
argument right now is the address of ipi_tlb_args variable, and
part of the reason why only one CPU can send IPI's at a time.)
don't wait forever for an IPI to complete. some of this is
from petrov.
- rename sparc64_ipi_{halt,pause,resume}_cpus() to
mp_{halt,pause,resume}_cpus()
- new function mp_cpu_is_paused() used to avoid access missing
saved DDB registers
- actually broadcast the flush in smp_tlb_flush_pte(),
smp_tlb_flush_ctx() and smp_tlb_flush_all(). the other end may
not do anything yet in the pte/ctx cases yet...
kgdb_machdep.c:
- rework for changed member names in db_regs_t.
locore.s:
- shave an instruction from syscall_setup() (set + ld -> sethi + ld)
- remove some old dead debug code
- add new sparc64_ipi_halt IPI entry point, it just calls the C
vector to shutdown.
- add new sparc64_ipi_pause IPI entry point, which just traps into
the debugger using the normal breakpoint trap. these cpus usually
lose the race in db_interface.c:db_suspend_others() and end up
calling the C vector sparc64_ipi_pause_thiscpu().
- add #if 0'ed code to sparc64_ipi_flush_{pte,ctx}() IPI entry
points to call the sp_ version of these functions.
- in rft_kernel (return from trap, kernel), check to see if the
%tpc is at the sparc64_ipi_pause_trap_point and if so, call
"done" not "retry"
- rework cpu_switch slightly: save the passed-in lwp instead of
using the one in curlwp
- in cpu_loadproc(), save the new lwp not the old lwp, to curlwp
- in cpu_initialize(), set %tl to zero as well. from petrov.
- in cpu_exit(), fix a load register confusion. from petrov.
- change some "set" in delay branch to "mov".
machdep.c:
- deal with function renames
pmap.c:
- remove a spurious space
trap.c:
- remove unused "trapstats" variable
- add cpu number to a couple of messages
1.190 Wed Sep 13 11:35:53 GMT 2006 mrg branches: 1.190.2;
SMP cleanup. provide support for multiple CPUs in DDB. (SMP itself
is still not working.)

cpu.h:
- add a pointer for DDB regs in SMP environment to struct cpu_info
- remove the #defines for mp_pause_cpus() and mp_resume_cpus()
cpuset.h:
- remove CPUSET_ALL() and rename CPUSET_ALL_BUT() to CPUSET_EXCEPT()
from petrov.
db_machdep.h:
- rename the members of db_regs_t to be the same as sparc
- change "db_regs_t ddb_regs" to "db_regs_t *ddb_regp" and change
all references to suit
- redo DDB_REGS to no longer be a pointer to a fixed data structure
but to one allocated per-cpu when ddb is entered
- move a bunch of prototypes in here
intr.h:
- remove SPARC64_IPI_* macros, no longer used
db_interface.c:
- change "db_regs_t ddb_regs" to "db_regs_t *ddb_regp" and change
all references to suit
- make "nil" a 64 bit entity
- change the ddb register access methods to work in multiprocessor
environment, it is now very much like sparc does it
- in kdb_trap() avoid accessing ddb_regp when it is NULL
- update several messages to include the cpu number
- unpause other cpus much later when resuming from ddb
- rename db_lock() to db_lock_cmd(), as the sparc-like code has
db_lock as a simple lock
- remove "mach cpus" command, and replace it with "mach cpu" (which
does the same) and also implement "mach cpu N" to switch to
another cpus saved trapframe
db_trace.c:
- update for the ddb_regs -> ddb_regp change
genassym.cf:
- add TF_KSTACK as offsetof(struct trapframe64, tf_kstack)
ipifuncs.c:
- overhaul extensively
- remove all normal interrupt handlers as IPI's, we now handle
them all specially in locore.s:interrupt_vector
- add a simplelock around all ipi functions - it's not safe for
multiple cpus to be sending IPI's to each other right now
- rename sparc64_ipi_pause() to sparc64_ipi_pause_thiscpu() and,
if DDB is configured, enable it to save the passed-in trapframe
to a db_regs_t for this cpu's saved DDB registers.
- remove the "ipimask" system (SPARC64_IPI_* macros) and instead
pass functions directly
- in sparc64_send_ipi() always set the interrupt arguments to 0,
the address and argument of the to be called function. (the
argument right now is the address of ipi_tlb_args variable, and
part of the reason why only one CPU can send IPI's at a time.)
don't wait forever for an IPI to complete. some of this is
from petrov.
- rename sparc64_ipi_{halt,pause,resume}_cpus() to
mp_{halt,pause,resume}_cpus()
- new function mp_cpu_is_paused() used to avoid access missing
saved DDB registers
- actually broadcast the flush in smp_tlb_flush_pte(),
smp_tlb_flush_ctx() and smp_tlb_flush_all(). the other end may
not do anything yet in the pte/ctx cases yet...
kgdb_machdep.c:
- rework for changed member names in db_regs_t.
locore.s:
- shave an instruction from syscall_setup() (set + ld -> sethi + ld)
- remove some old dead debug code
- add new sparc64_ipi_halt IPI entry point, it just calls the C
vector to shutdown.
- add new sparc64_ipi_pause IPI entry point, which just traps into
the debugger using the normal breakpoint trap. these cpus usually
lose the race in db_interface.c:db_suspend_others() and end up
calling the C vector sparc64_ipi_pause_thiscpu().
- add #if 0'ed code to sparc64_ipi_flush_{pte,ctx}() IPI entry
points to call the sp_ version of these functions.
- in rft_kernel (return from trap, kernel), check to see if the
%tpc is at the sparc64_ipi_pause_trap_point and if so, call
"done" not "retry"
- rework cpu_switch slightly: save the passed-in lwp instead of
using the one in curlwp
- in cpu_loadproc(), save the new lwp not the old lwp, to curlwp
- in cpu_initialize(), set %tl to zero as well. from petrov.
- in cpu_exit(), fix a load register confusion. from petrov.
- change some "set" in delay branch to "mov".
machdep.c:
- deal with function renames
pmap.c:
- remove a spurious space
trap.c:
- remove unused "trapstats" variable
- add cpu number to a couple of messages
/src/sys/arch/amiga/amiga/
H A Dmachdep.c1.190 Wed Mar 24 15:34:47 GMT 2004 atatat branches: 1.190.8; 1.190.14;
Tango on sysctl_createv() and flags. The flags have all been renamed,
and sysctl_createv() now uses more arguments.
1.190 Wed Mar 24 15:34:47 GMT 2004 atatat branches: 1.190.8; 1.190.14;
Tango on sysctl_createv() and flags. The flags have all been renamed,
and sysctl_createv() now uses more arguments.
1.190 Wed Mar 24 15:34:47 GMT 2004 atatat branches: 1.190.8; 1.190.14;
Tango on sysctl_createv() and flags. The flags have all been renamed,
and sysctl_createv() now uses more arguments.
1.190 Wed Mar 24 15:34:47 GMT 2004 atatat branches: 1.190.8; 1.190.14;
Tango on sysctl_createv() and flags. The flags have all been renamed,
and sysctl_createv() now uses more arguments.
1.190 Wed Mar 24 15:34:47 GMT 2004 atatat branches: 1.190.8; 1.190.14;
Tango on sysctl_createv() and flags. The flags have all been renamed,
and sysctl_createv() now uses more arguments.
1.190 Wed Mar 24 15:34:47 GMT 2004 atatat branches: 1.190.8; 1.190.14;
Tango on sysctl_createv() and flags. The flags have all been renamed,
and sysctl_createv() now uses more arguments.
1.190 Wed Mar 24 15:34:47 GMT 2004 atatat branches: 1.190.8; 1.190.14;
Tango on sysctl_createv() and flags. The flags have all been renamed,
and sysctl_createv() now uses more arguments.
1.190 Wed Mar 24 15:34:47 GMT 2004 atatat branches: 1.190.8; 1.190.14;
Tango on sysctl_createv() and flags. The flags have all been renamed,
and sysctl_createv() now uses more arguments.
1.190 Wed Mar 24 15:34:47 GMT 2004 atatat branches: 1.190.8; 1.190.14;
Tango on sysctl_createv() and flags. The flags have all been renamed,
and sysctl_createv() now uses more arguments.
/src/sys/kern/
H A Dkern_sysctl.c1.190 Sun Mar 05 00:32:43 GMT 2006 yamt branches: 1.190.2; 1.190.4;
sysctl_lookup: use "d" rather than "rnode->sysctl_data" after
"d = rnode->sysctl_data".
1.190 Sun Mar 05 00:32:43 GMT 2006 yamt branches: 1.190.2; 1.190.4;
sysctl_lookup: use "d" rather than "rnode->sysctl_data" after
"d = rnode->sysctl_data".
1.190 Sun Mar 05 00:32:43 GMT 2006 yamt branches: 1.190.2; 1.190.4;
sysctl_lookup: use "d" rather than "rnode->sysctl_data" after
"d = rnode->sysctl_data".
1.190 Sun Mar 05 00:32:43 GMT 2006 yamt branches: 1.190.2; 1.190.4;
sysctl_lookup: use "d" rather than "rnode->sysctl_data" after
"d = rnode->sysctl_data".
1.190 Sun Mar 05 00:32:43 GMT 2006 yamt branches: 1.190.2; 1.190.4;
sysctl_lookup: use "d" rather than "rnode->sysctl_data" after
"d = rnode->sysctl_data".
1.190 Sun Mar 05 00:32:43 GMT 2006 yamt branches: 1.190.2; 1.190.4;
sysctl_lookup: use "d" rather than "rnode->sysctl_data" after
"d = rnode->sysctl_data".
H A Dkern_subr.c1.190 Wed Jun 11 10:40:21 GMT 2008 drochner branches: 1.190.2;
remove the hacks around fakemdrootdev[] which should be unnecessary now
that "md" devices show up in the "alldevs" list
1.190 Wed Jun 11 10:40:21 GMT 2008 drochner branches: 1.190.2;
remove the hacks around fakemdrootdev[] which should be unnecessary now
that "md" devices show up in the "alldevs" list
1.190 Wed Jun 11 10:40:21 GMT 2008 drochner branches: 1.190.2;
remove the hacks around fakemdrootdev[] which should be unnecessary now
that "md" devices show up in the "alldevs" list
1.190 Wed Jun 11 10:40:21 GMT 2008 drochner branches: 1.190.2;
remove the hacks around fakemdrootdev[] which should be unnecessary now
that "md" devices show up in the "alldevs" list
H A Dsyscalls.c1.190 Wed Aug 15 00:09:13 GMT 2007 ad branches: 1.190.2;
Regen.
1.190 Wed Aug 15 00:09:13 GMT 2007 ad branches: 1.190.2;
Regen.
H A Dinit_sysctl.c1.190 Sat Jun 02 21:36:46 GMT 2012 dsl branches: 1.190.2;
Add some pre-processor magic to verify that the type of the data item
passed to sysctl_createv() actually matches the declared type for
the item itself.
In the places where the caller specifies a function and a structure
address (typically the 'softc') an explicit (void *) cast is now needed.
Fixes bugs in sys/dev/acpi/asus_acpi.c sys/dev/bluetooth/bcsp.c
sys/kern/vfs_bio.c sys/miscfs/syncfs/sync_subr.c and setting
AcpiGbl_EnableAmlDebugObject.
(mostly passing the address of a uint64_t when typed as CTLTYPE_INT).
I've test built quite a few kernels, but there may be some unfixed MD
fallout. Most likely passing &char[] to char *.
Also add CTLFLAG_UNSIGNED for unsiged decimals - not set yet.
1.190 Sat Jun 02 21:36:46 GMT 2012 dsl branches: 1.190.2;
Add some pre-processor magic to verify that the type of the data item
passed to sysctl_createv() actually matches the declared type for
the item itself.
In the places where the caller specifies a function and a structure
address (typically the 'softc') an explicit (void *) cast is now needed.
Fixes bugs in sys/dev/acpi/asus_acpi.c sys/dev/bluetooth/bcsp.c
sys/kern/vfs_bio.c sys/miscfs/syncfs/sync_subr.c and setting
AcpiGbl_EnableAmlDebugObject.
(mostly passing the address of a uint64_t when typed as CTLTYPE_INT).
I've test built quite a few kernels, but there may be some unfixed MD
fallout. Most likely passing &char[] to char *.
Also add CTLFLAG_UNSIGNED for unsiged decimals - not set yet.
H A Dtty.c1.190 Fri Feb 09 21:55:32 GMT 2007 ad branches: 1.190.2;
Merge newlock2 to head.
1.190 Fri Feb 09 21:55:32 GMT 2007 ad branches: 1.190.2;
Merge newlock2 to head.
H A Dvfs_vnops.c1.190 Sun Jun 22 18:32:27 GMT 2014 maxv branches: 1.190.2;
Fix a NULL pointer dereference after a loooong discussion with dholland@,
hannken@, blymn@ and martin@.

This bug would panic the system when veriexec is set to the VERIEXEC_LOCKDOWN
mode (only settable from root).
1.190 Sun Jun 22 18:32:27 GMT 2014 maxv branches: 1.190.2;
Fix a NULL pointer dereference after a loooong discussion with dholland@,
hannken@, blymn@ and martin@.

This bug would panic the system when veriexec is set to the VERIEXEC_LOCKDOWN
mode (only settable from root).
/src/libexec/ld.elf_so/
H A Drtld.c1.190 Sun Feb 11 18:58:44 GMT 2018 jakllsch branches: 1.190.2;
Wrap PowerPC #pragma goop in #if __GNUC_PREREQ__(6,0).
Our older GCC warns/errors on it.
1.190 Sun Feb 11 18:58:44 GMT 2018 jakllsch branches: 1.190.2;
Wrap PowerPC #pragma goop in #if __GNUC_PREREQ__(6,0).
Our older GCC warns/errors on it.
1.190 Sun Feb 11 18:58:44 GMT 2018 jakllsch branches: 1.190.2;
Wrap PowerPC #pragma goop in #if __GNUC_PREREQ__(6,0).
Our older GCC warns/errors on it.
1.190 Sun Feb 11 18:58:44 GMT 2018 jakllsch branches: 1.190.2;
Wrap PowerPC #pragma goop in #if __GNUC_PREREQ__(6,0).
Our older GCC warns/errors on it.
1.190 Sun Feb 11 18:58:44 GMT 2018 jakllsch branches: 1.190.2;
Wrap PowerPC #pragma goop in #if __GNUC_PREREQ__(6,0).
Our older GCC warns/errors on it.
1.190 Sun Feb 11 18:58:44 GMT 2018 jakllsch branches: 1.190.2;
Wrap PowerPC #pragma goop in #if __GNUC_PREREQ__(6,0).
Our older GCC warns/errors on it.
1.190 Sun Feb 11 18:58:44 GMT 2018 jakllsch branches: 1.190.2;
Wrap PowerPC #pragma goop in #if __GNUC_PREREQ__(6,0).
Our older GCC warns/errors on it.
1.190 Sun Feb 11 18:58:44 GMT 2018 jakllsch branches: 1.190.2;
Wrap PowerPC #pragma goop in #if __GNUC_PREREQ__(6,0).
Our older GCC warns/errors on it.
/src/sys/arch/pmax/conf/
H A DGENERIC1.190 Tue Dec 13 20:42:19 GMT 2016 christos branches: 1.190.8;
wildcard speaker attachments, now that we can handle many of them.
1.190 Tue Dec 13 20:42:19 GMT 2016 christos branches: 1.190.8;
wildcard speaker attachments, now that we can handle many of them.
/src/lib/libm/
H A DMakefile1.190 Thu Mar 23 18:26:03 GMT 2017 chs branches: 1.190.2;
sun2 just has to be different, of course.
it doesn't use the libc softfloat and thus doesn't set MKSOFTFLOAT=yes.
enable the fenv functions here explicitly for now.
1.190 Thu Mar 23 18:26:03 GMT 2017 chs branches: 1.190.2;
sun2 just has to be different, of course.
it doesn't use the libc softfloat and thus doesn't set MKSOFTFLOAT=yes.
enable the fenv functions here explicitly for now.
/src/doc/
H A DHACKS1.190 Tue May 14 02:53:16 GMT 2019 maya branches: 1.190.2;
Add a hack entry for libpthread one section
1.190 Tue May 14 02:53:16 GMT 2019 maya branches: 1.190.2;
Add a hack entry for libpthread one section
/src/sys/nfs/
H A Dnfs_bio.c1.190 Fri Sep 05 05:34:57 GMT 2014 matt branches: 1.190.2;
Don't use catch as a variable name.
1.190 Fri Sep 05 05:34:57 GMT 2014 matt branches: 1.190.2;
Don't use catch as a variable name.
H A Dnfs_socket.c1.190 Sat Sep 14 22:29:08 GMT 2013 martin branches: 1.190.2;
Backout wildcard pragma to kill warnings and instead sprinkle a few dozen
__unused attributes.
Requested by joerg@
1.190 Sat Sep 14 22:29:08 GMT 2013 martin branches: 1.190.2;
Backout wildcard pragma to kill warnings and instead sprinkle a few dozen
__unused attributes.
Requested by joerg@
/src/sys/rump/librump/rumpkern/
H A Dvm.c1.190 Thu Jun 11 19:20:46 GMT 2020 ad branches: 1.190.2;
uvm_availmem(): give it a boolean argument to specify whether a recent
cached value will do, or if the very latest total must be fetched. It can
be called thousands of times a second and fetching the totals impacts not
only the calling LWP but other CPUs doing unrelated activity in the VM
system.
1.190 Thu Jun 11 19:20:46 GMT 2020 ad branches: 1.190.2;
uvm_availmem(): give it a boolean argument to specify whether a recent
cached value will do, or if the very latest total must be fetched. It can
be called thousands of times a second and fetching the totals impacts not
only the calling LWP but other CPUs doing unrelated activity in the VM
system.
1.190 Thu Jun 11 19:20:46 GMT 2020 ad branches: 1.190.2;
uvm_availmem(): give it a boolean argument to specify whether a recent
cached value will do, or if the very latest total must be fetched. It can
be called thousands of times a second and fetching the totals impacts not
only the calling LWP but other CPUs doing unrelated activity in the VM
system.
1.190 Thu Jun 11 19:20:46 GMT 2020 ad branches: 1.190.2;
uvm_availmem(): give it a boolean argument to specify whether a recent
cached value will do, or if the very latest total must be fetched. It can
be called thousands of times a second and fetching the totals impacts not
only the calling LWP but other CPUs doing unrelated activity in the VM
system.
/src/sys/arch/hp300/conf/
H A DGENERIC1.190 Sun Nov 16 16:01:41 GMT 2014 manu branches: 1.190.2;
Remove unused extended attributes kernel options

As Masao Uebayashi pointed to me, UFS_EXTATTR_AUTOSTART, LFS_EXTATTR_AUTOSTART
and UFS_EXTATTR_AUTOCREATE are not used anywhere in the code. Remove them
as they have been obsolete for a long time:
UFS_EXTATTR_AUTOSTART was replaced by mount -o extattr
LFS_EXTATTR_AUTOSTART was created to match obsolete UFS_EXTATTR_AUTOSTART
UFS_EXTATTR_AUTOCREATE was replaced by sysctl vfs.ffs.extattr_autocreate
1.190 Sun Nov 16 16:01:41 GMT 2014 manu branches: 1.190.2;
Remove unused extended attributes kernel options

As Masao Uebayashi pointed to me, UFS_EXTATTR_AUTOSTART, LFS_EXTATTR_AUTOSTART
and UFS_EXTATTR_AUTOCREATE are not used anywhere in the code. Remove them
as they have been obsolete for a long time:
UFS_EXTATTR_AUTOSTART was replaced by mount -o extattr
LFS_EXTATTR_AUTOSTART was created to match obsolete UFS_EXTATTR_AUTOSTART
UFS_EXTATTR_AUTOCREATE was replaced by sysctl vfs.ffs.extattr_autocreate
1.190 Sun Nov 16 16:01:41 GMT 2014 manu branches: 1.190.2;
Remove unused extended attributes kernel options

As Masao Uebayashi pointed to me, UFS_EXTATTR_AUTOSTART, LFS_EXTATTR_AUTOSTART
and UFS_EXTATTR_AUTOCREATE are not used anywhere in the code. Remove them
as they have been obsolete for a long time:
UFS_EXTATTR_AUTOSTART was replaced by mount -o extattr
LFS_EXTATTR_AUTOSTART was created to match obsolete UFS_EXTATTR_AUTOSTART
UFS_EXTATTR_AUTOCREATE was replaced by sysctl vfs.ffs.extattr_autocreate
1.190 Sun Nov 16 16:01:41 GMT 2014 manu branches: 1.190.2;
Remove unused extended attributes kernel options

As Masao Uebayashi pointed to me, UFS_EXTATTR_AUTOSTART, LFS_EXTATTR_AUTOSTART
and UFS_EXTATTR_AUTOCREATE are not used anywhere in the code. Remove them
as they have been obsolete for a long time:
UFS_EXTATTR_AUTOSTART was replaced by mount -o extattr
LFS_EXTATTR_AUTOSTART was created to match obsolete UFS_EXTATTR_AUTOSTART
UFS_EXTATTR_AUTOCREATE was replaced by sysctl vfs.ffs.extattr_autocreate
1.190 Sun Nov 16 16:01:41 GMT 2014 manu branches: 1.190.2;
Remove unused extended attributes kernel options

As Masao Uebayashi pointed to me, UFS_EXTATTR_AUTOSTART, LFS_EXTATTR_AUTOSTART
and UFS_EXTATTR_AUTOCREATE are not used anywhere in the code. Remove them
as they have been obsolete for a long time:
UFS_EXTATTR_AUTOSTART was replaced by mount -o extattr
LFS_EXTATTR_AUTOSTART was created to match obsolete UFS_EXTATTR_AUTOSTART
UFS_EXTATTR_AUTOCREATE was replaced by sysctl vfs.ffs.extattr_autocreate
1.190 Sun Nov 16 16:01:41 GMT 2014 manu branches: 1.190.2;
Remove unused extended attributes kernel options

As Masao Uebayashi pointed to me, UFS_EXTATTR_AUTOSTART, LFS_EXTATTR_AUTOSTART
and UFS_EXTATTR_AUTOCREATE are not used anywhere in the code. Remove them
as they have been obsolete for a long time:
UFS_EXTATTR_AUTOSTART was replaced by mount -o extattr
LFS_EXTATTR_AUTOSTART was created to match obsolete UFS_EXTATTR_AUTOSTART
UFS_EXTATTR_AUTOCREATE was replaced by sysctl vfs.ffs.extattr_autocreate
/src/sys/arch/vax/vax/
H A Dmachdep.c1.190 Mon Mar 24 20:06:33 GMT 2014 christos branches: 1.190.6;
use cpu_{g,s}etmodel
1.190 Mon Mar 24 20:06:33 GMT 2014 christos branches: 1.190.6;
use cpu_{g,s}etmodel
1.190 Mon Mar 24 20:06:33 GMT 2014 christos branches: 1.190.6;
use cpu_{g,s}etmodel
1.190 Mon Mar 24 20:06:33 GMT 2014 christos branches: 1.190.6;
use cpu_{g,s}etmodel
1.190 Mon Mar 24 20:06:33 GMT 2014 christos branches: 1.190.6;
use cpu_{g,s}etmodel
1.190 Mon Mar 24 20:06:33 GMT 2014 christos branches: 1.190.6;
use cpu_{g,s}etmodel
/src/sys/dev/ic/
H A Dtulip.c1.190 Tue May 23 02:19:14 GMT 2017 ozaki-r branches: 1.190.8;
Apply deferred if_start to more drivers

And annotate some XXX_start as it runs in softint to clarify that
it doesn't need deferred if_start.
1.190 Tue May 23 02:19:14 GMT 2017 ozaki-r branches: 1.190.8;
Apply deferred if_start to more drivers

And annotate some XXX_start as it runs in softint to clarify that
it doesn't need deferred if_start.
1.190 Tue May 23 02:19:14 GMT 2017 ozaki-r branches: 1.190.8;
Apply deferred if_start to more drivers

And annotate some XXX_start as it runs in softint to clarify that
it doesn't need deferred if_start.
1.190 Tue May 23 02:19:14 GMT 2017 ozaki-r branches: 1.190.8;
Apply deferred if_start to more drivers

And annotate some XXX_start as it runs in softint to clarify that
it doesn't need deferred if_start.
/src/sys/dev/pcmcia/
H A Dpcmciadevs.h1.190 Fri Nov 07 16:00:49 GMT 2003 wiz regen, so "generated from" line is correct.
1.190 Fri Nov 07 16:00:49 GMT 2003 wiz regen, so "generated from" line is correct.
H A Dpcmciadevs_data.h1.190 Fri Nov 07 16:00:49 GMT 2003 wiz regen, so "generated from" line is correct.
1.190 Fri Nov 07 16:00:49 GMT 2003 wiz regen, so "generated from" line is correct.
/src/sys/sys/
H A Dvnode.h1.190 Tue Feb 05 14:19:52 GMT 2008 ad branches: 1.190.6;
Lock v_knlist with the vnode interlock. PR kern/37881.
1.190 Tue Feb 05 14:19:52 GMT 2008 ad branches: 1.190.6;
Lock v_knlist with the vnode interlock. PR kern/37881.
/src/sys/uvm/
H A Duvm_fault.c1.190 Sat Aug 06 17:25:03 GMT 2011 rmind branches: 1.190.2;
- Rework uvm_anfree() into uvm_anon_freelst(), which always drops the lock.
- Free anons in uvm_anon_freelst() without lock held.
- Mechanic sync to unused loaning code.
1.190 Sat Aug 06 17:25:03 GMT 2011 rmind branches: 1.190.2;
- Rework uvm_anfree() into uvm_anon_freelst(), which always drops the lock.
- Free anons in uvm_anon_freelst() without lock held.
- Mechanic sync to unused loaning code.

Completed in 1800 milliseconds

1234567891011>>