Searched hist:1.160 (Results 1 - 25 of 409) sorted by relevance

1234567891011>>

/src/sys/arch/arm/gemini/
H A Dif_gmc.c1.8 Mon Apr 22 08:05:00 GMT 2019 msaitoh On drivers which use MII(4) and have hook SIOC[GS]IFMEDIA which just pass to
ifmedia_ioctl(), the hook is not required because ether_ioctl has it
(if_ethersubr.c rev. 1.160). These drivers don't return ENETRESET in
ifmedia_ioctl(), so no functional change.

/src/sys/arch/arm/sunxi/
H A Dsun4i_emac.c1.7 Mon Apr 22 07:51:16 GMT 2019 msaitoh In drivers which use MII(4) and have hook SIOC[GS]IFMEDIA which just pass to
ifmedia_ioctl(), the hook is not required because ether_ioctl has it
(if_ethersubr.c rev. 1.160). These drivers don't return ENETRESET in
ifmedia_ioctl(), so no functional change.

H A Dsunxi_emac.c1.24 Mon Apr 22 08:05:01 GMT 2019 msaitoh On drivers which use MII(4) and have hook SIOC[GS]IFMEDIA which just pass to
ifmedia_ioctl(), the hook is not required because ether_ioctl has it
(if_ethersubr.c rev. 1.160). These drivers don't return ENETRESET in
ifmedia_ioctl(), so no functional change.

/src/sys/arch/x86/x86/
H A Dintr.c1.160 Sat Mar 12 15:50:45 GMT 2022 riastradh x86: Check for biglock leakage in interrupt handlers.

/src/sys/dev/pci/
H A Dif_lii.c1.22 Mon Apr 22 08:05:01 GMT 2019 msaitoh On drivers which use MII(4) and have hook SIOC[GS]IFMEDIA which just pass to
ifmedia_ioctl(), the hook is not required because ether_ioctl has it
(if_ethersubr.c rev. 1.160). These drivers don't return ENETRESET in
ifmedia_ioctl(), so no functional change.

H A Dif_et.c1.22 Mon Apr 22 08:05:01 GMT 2019 msaitoh On drivers which use MII(4) and have hook SIOC[GS]IFMEDIA which just pass to
ifmedia_ioctl(), the hook is not required because ether_ioctl has it
(if_ethersubr.c rev. 1.160). These drivers don't return ENETRESET in
ifmedia_ioctl(), so no functional change.

/src/sbin/sysctl/
H A Dsysctl.c1.160 Sun Feb 04 09:03:23 GMT 2018 mrg branches: 1.160.2; 1.160.4;
updates for GCC 6.4:

identd has aliasing violations, use -fno-strict-aliasing.

newfs_msdos's getbpbinfo() has missing {} issues.

sysctl's kern_cp_id() has missing {} issues.

1.160 Sun Feb 04 09:03:23 GMT 2018 mrg branches: 1.160.2; 1.160.4;
updates for GCC 6.4:

identd has aliasing violations, use -fno-strict-aliasing.

newfs_msdos's getbpbinfo() has missing {} issues.

sysctl's kern_cp_id() has missing {} issues.

1.160 Sun Feb 04 09:03:23 GMT 2018 mrg branches: 1.160.2; 1.160.4;
updates for GCC 6.4:

identd has aliasing violations, use -fno-strict-aliasing.

newfs_msdos's getbpbinfo() has missing {} issues.

sysctl's kern_cp_id() has missing {} issues.

/src/sys/kern/
H A Dkern_ktrace.c1.160 Fri Dec 30 20:33:04 GMT 2011 christos branches: 1.160.2; 1.160.6; 1.160.8;
Avoid panic on DIAGNOSTIC kernels with ktrace -p <not-existing-process>
The old logic was:

error = ktrace_common(, fp);
if (fp)
if (error)
fd_abort(, fp, );
else
fd_abort(, NULL, );

The 'if (fp)' portion really means if the op is not KTROP_CLEAR,
since the logic above always sets up fp otherwise, so change the
code to test this directly.

ktrace_common() can return an error both on the kernel thread
creation failure, which means that we should be calling fd_abort()
with fp, since nobody used the file yet and we should clear it now.
But it can also return an error because later, after the thread
creation if the process or process group was not found. In this
second case, we should be calling fd_abort with NULL, since the fp
is now used by the thread and it is going to clean it later. So
instead of checking the error from ktrace_common() to decide if we
are going to call fd_abort() with a NULL fp or not, let krace_common()
decide for us. So the new logic becomes:

error = ktrace_common(, &fp);
if (op != KTROP_CLEAR)
fd_abort(, fp, );

Since I am here, fix a freed memory access, by setting ktd to FALSE.

1.160 Fri Dec 30 20:33:04 GMT 2011 christos branches: 1.160.2; 1.160.6; 1.160.8;
Avoid panic on DIAGNOSTIC kernels with ktrace -p <not-existing-process>
The old logic was:

error = ktrace_common(, fp);
if (fp)
if (error)
fd_abort(, fp, );
else
fd_abort(, NULL, );

The 'if (fp)' portion really means if the op is not KTROP_CLEAR,
since the logic above always sets up fp otherwise, so change the
code to test this directly.

ktrace_common() can return an error both on the kernel thread
creation failure, which means that we should be calling fd_abort()
with fp, since nobody used the file yet and we should clear it now.
But it can also return an error because later, after the thread
creation if the process or process group was not found. In this
second case, we should be calling fd_abort with NULL, since the fp
is now used by the thread and it is going to clean it later. So
instead of checking the error from ktrace_common() to decide if we
are going to call fd_abort() with a NULL fp or not, let krace_common()
decide for us. So the new logic becomes:

error = ktrace_common(, &fp);
if (op != KTROP_CLEAR)
fd_abort(, fp, );

Since I am here, fix a freed memory access, by setting ktd to FALSE.

1.160 Fri Dec 30 20:33:04 GMT 2011 christos branches: 1.160.2; 1.160.6; 1.160.8;
Avoid panic on DIAGNOSTIC kernels with ktrace -p <not-existing-process>
The old logic was:

error = ktrace_common(, fp);
if (fp)
if (error)
fd_abort(, fp, );
else
fd_abort(, NULL, );

The 'if (fp)' portion really means if the op is not KTROP_CLEAR,
since the logic above always sets up fp otherwise, so change the
code to test this directly.

ktrace_common() can return an error both on the kernel thread
creation failure, which means that we should be calling fd_abort()
with fp, since nobody used the file yet and we should clear it now.
But it can also return an error because later, after the thread
creation if the process or process group was not found. In this
second case, we should be calling fd_abort with NULL, since the fp
is now used by the thread and it is going to clean it later. So
instead of checking the error from ktrace_common() to decide if we
are going to call fd_abort() with a NULL fp or not, let krace_common()
decide for us. So the new logic becomes:

error = ktrace_common(, &fp);
if (op != KTROP_CLEAR)
fd_abort(, fp, );

Since I am here, fix a freed memory access, by setting ktd to FALSE.

1.160 Fri Dec 30 20:33:04 GMT 2011 christos branches: 1.160.2; 1.160.6; 1.160.8;
Avoid panic on DIAGNOSTIC kernels with ktrace -p <not-existing-process>
The old logic was:

error = ktrace_common(, fp);
if (fp)
if (error)
fd_abort(, fp, );
else
fd_abort(, NULL, );

The 'if (fp)' portion really means if the op is not KTROP_CLEAR,
since the logic above always sets up fp otherwise, so change the
code to test this directly.

ktrace_common() can return an error both on the kernel thread
creation failure, which means that we should be calling fd_abort()
with fp, since nobody used the file yet and we should clear it now.
But it can also return an error because later, after the thread
creation if the process or process group was not found. In this
second case, we should be calling fd_abort with NULL, since the fp
is now used by the thread and it is going to clean it later. So
instead of checking the error from ktrace_common() to decide if we
are going to call fd_abort() with a NULL fp or not, let krace_common()
decide for us. So the new logic becomes:

error = ktrace_common(, &fp);
if (op != KTROP_CLEAR)
fd_abort(, fp, );

Since I am here, fix a freed memory access, by setting ktd to FALSE.

H A Dinit_sysent.c1.160 Sun Jan 02 17:47:30 GMT 2005 thorpej branches: 1.160.2; 1.160.4;
Regen for extended attribute system calls.

1.160 Sun Jan 02 17:47:30 GMT 2005 thorpej branches: 1.160.2; 1.160.4;
Regen for extended attribute system calls.

1.160 Sun Jan 02 17:47:30 GMT 2005 thorpej branches: 1.160.2; 1.160.4;
Regen for extended attribute system calls.

/src/sys/arch/vax/vax/
H A Dpmap.c1.160 Thu Apr 24 15:35:27 GMT 2008 ad branches: 1.160.2; 1.160.8; 1.160.10;
Network protocol interrupts can now block on locks, so merge the globals
proclist_mutex and proclist_lock into a single adaptive mutex (proc_lock).
Implications:

- Inspecting process state requires thread context, so signals can no longer
be sent from a hardware interrupt handler. Signal activity must be
deferred to a soft interrupt or kthread.

- As the proc state locking is simplified, it's now safe to take exit()
and wait() out from under kernel_lock.

- The system spends less time at IPL_SCHED, and there is less lock activity.

1.160 Thu Apr 24 15:35:27 GMT 2008 ad branches: 1.160.2; 1.160.8; 1.160.10;
Network protocol interrupts can now block on locks, so merge the globals
proclist_mutex and proclist_lock into a single adaptive mutex (proc_lock).
Implications:

- Inspecting process state requires thread context, so signals can no longer
be sent from a hardware interrupt handler. Signal activity must be
deferred to a soft interrupt or kthread.

- As the proc state locking is simplified, it's now safe to take exit()
and wait() out from under kernel_lock.

- The system spends less time at IPL_SCHED, and there is less lock activity.

1.160 Thu Apr 24 15:35:27 GMT 2008 ad branches: 1.160.2; 1.160.8; 1.160.10;
Network protocol interrupts can now block on locks, so merge the globals
proclist_mutex and proclist_lock into a single adaptive mutex (proc_lock).
Implications:

- Inspecting process state requires thread context, so signals can no longer
be sent from a hardware interrupt handler. Signal activity must be
deferred to a soft interrupt or kthread.

- As the proc state locking is simplified, it's now safe to take exit()
and wait() out from under kernel_lock.

- The system spends less time at IPL_SCHED, and there is less lock activity.

1.160 Thu Apr 24 15:35:27 GMT 2008 ad branches: 1.160.2; 1.160.8; 1.160.10;
Network protocol interrupts can now block on locks, so merge the globals
proclist_mutex and proclist_lock into a single adaptive mutex (proc_lock).
Implications:

- Inspecting process state requires thread context, so signals can no longer
be sent from a hardware interrupt handler. Signal activity must be
deferred to a soft interrupt or kthread.

- As the proc state locking is simplified, it's now safe to take exit()
and wait() out from under kernel_lock.

- The system spends less time at IPL_SCHED, and there is less lock activity.

/src/sys/dev/cadence/
H A Dif_cemac.c1.17 Mon Apr 22 08:05:01 GMT 2019 msaitoh On drivers which use MII(4) and have hook SIOC[GS]IFMEDIA which just pass to
ifmedia_ioctl(), the hook is not required because ether_ioctl has it
(if_ethersubr.c rev. 1.160). These drivers don't return ENETRESET in
ifmedia_ioctl(), so no functional change.

/src/sys/arch/sparc/conf/
H A DMRCOFFEE1.2 Sat Jul 10 00:17:09 GMT 2004 uwe Sync with relevant portions of GENERIC 1.160.
Uncomment FFS, as MFS needs it.

H A DKRUPS1.21 Sat Jul 10 00:12:55 GMT 2004 uwe Sync with relevant portions of GENERIC 1.160.
options<space> police.
Uncomment FFS, as MFS needs it.

/src/sys/dev/marvell/
H A Dif_mvxpe.c1.23 Wed Apr 24 10:56:24 GMT 2019 msaitoh This driver uses MII(4) and have hook SIOC[GS]IFMEDIA which just pass to
ifmedia_ioctl(), the hook is not required because ether_ioctl has it
(if_ethersubr.c rev. 1.160). This driver might require some additional fixes
for SIOCSIFMTU and other ioctl()s.

/src/sys/dev/ic/
H A Dlan9118.c1.30 Mon Apr 22 08:05:01 GMT 2019 msaitoh On drivers which use MII(4) and have hook SIOC[GS]IFMEDIA which just pass to
ifmedia_ioctl(), the hook is not required because ether_ioctl has it
(if_ethersubr.c rev. 1.160). These drivers don't return ENETRESET in
ifmedia_ioctl(), so no functional change.

H A Datw.c1.160 Fri Jun 10 13:27:13 GMT 2016 ozaki-r branches: 1.160.2; 1.160.4;
Introduce m_set_rcvif and m_reset_rcvif

The API is used to set (or reset) a received interface of a mbuf.
They are counterpart of m_get_rcvif, which will come in another
commit, hide internal of rcvif operation, and reduce the diff of
the upcoming change.

No functional change.

1.160 Fri Jun 10 13:27:13 GMT 2016 ozaki-r branches: 1.160.2; 1.160.4;
Introduce m_set_rcvif and m_reset_rcvif

The API is used to set (or reset) a received interface of a mbuf.
They are counterpart of m_get_rcvif, which will come in another
commit, hide internal of rcvif operation, and reduce the diff of
the upcoming change.

No functional change.

1.160 Fri Jun 10 13:27:13 GMT 2016 ozaki-r branches: 1.160.2; 1.160.4;
Introduce m_set_rcvif and m_reset_rcvif

The API is used to set (or reset) a received interface of a mbuf.
They are counterpart of m_get_rcvif, which will come in another
commit, hide internal of rcvif operation, and reduce the diff of
the upcoming change.

No functional change.

/src/sys/arch/arm/at91/
H A Dat91emac.c1.25 Mon Apr 22 08:05:00 GMT 2019 msaitoh On drivers which use MII(4) and have hook SIOC[GS]IFMEDIA which just pass to
ifmedia_ioctl(), the hook is not required because ether_ioctl has it
(if_ethersubr.c rev. 1.160). These drivers don't return ENETRESET in
ifmedia_ioctl(), so no functional change.

/src/sys/arch/arm/imx/
H A Dif_enet.c1.19 Wed Apr 24 11:18:20 GMT 2019 msaitoh SIOCS is 'S'et function and the ioctl argument is ifreq.
SIOCG is 'G'et function and the ioctl argument is ifmediareq.
Before this change, SIOCG modify sc->sc_flowflags unexpectedly.
Don't hook SIOCGIFMEDIA because this driver uses MII(4) and ether_ioctl has
the hook(if_ethersubr.c rev. 1.160). This driver might require some additional
fixes for SIOCSIFMTU and other ioctl()s.

XXX pullup-[78].

/src/sys/dev/pcmcia/
H A Dif_ne_pcmcia.c1.160 Thu Oct 17 21:06:47 GMT 2013 christos branches: 1.160.30;
remove unused variable

1.160 Thu Oct 17 21:06:47 GMT 2013 christos branches: 1.160.30;
remove unused variable

/src/sys/arch/mips/mips/
H A Dlocore.S1.160 Sun Nov 13 00:41:30 GMT 2005 simonb branches: 1.160.6; 1.160.8; 1.160.10; 1.160.14;
Switch to the libkern C versions of _insque()/_remque().
Problems building -current and pointers to the libkern versions of
these functions from Izumi Tsutsui.

1.160 Sun Nov 13 00:41:30 GMT 2005 simonb branches: 1.160.6; 1.160.8; 1.160.10; 1.160.14;
Switch to the libkern C versions of _insque()/_remque().
Problems building -current and pointers to the libkern versions of
these functions from Izumi Tsutsui.

1.160 Sun Nov 13 00:41:30 GMT 2005 simonb branches: 1.160.6; 1.160.8; 1.160.10; 1.160.14;
Switch to the libkern C versions of _insque()/_remque().
Problems building -current and pointers to the libkern versions of
these functions from Izumi Tsutsui.

1.160 Sun Nov 13 00:41:30 GMT 2005 simonb branches: 1.160.6; 1.160.8; 1.160.10; 1.160.14;
Switch to the libkern C versions of _insque()/_remque().
Problems building -current and pointers to the libkern versions of
these functions from Izumi Tsutsui.

1.160 Sun Nov 13 00:41:30 GMT 2005 simonb branches: 1.160.6; 1.160.8; 1.160.10; 1.160.14;
Switch to the libkern C versions of _insque()/_remque().
Problems building -current and pointers to the libkern versions of
these functions from Izumi Tsutsui.

/src/sys/miscfs/procfs/
H A Dprocfs_vnops.c1.160 Wed Oct 10 20:42:30 GMT 2007 ad branches: 1.160.2; 1.160.4;
Merge from vmlocking:

- Split vnode::v_flag into three fields, depending on field locking.
- simple_lock -> kmutex in a few places.
- Fix some simple locking problems.

1.160 Wed Oct 10 20:42:30 GMT 2007 ad branches: 1.160.2; 1.160.4;
Merge from vmlocking:

- Split vnode::v_flag into three fields, depending on field locking.
- simple_lock -> kmutex in a few places.
- Fix some simple locking problems.

1.160 Wed Oct 10 20:42:30 GMT 2007 ad branches: 1.160.2; 1.160.4;
Merge from vmlocking:

- Split vnode::v_flag into three fields, depending on field locking.
- simple_lock -> kmutex in a few places.
- Fix some simple locking problems.

/src/sys/arch/sparc64/sparc64/
H A Dtrap.c1.160 Wed Dec 02 07:34:57 GMT 2009 mrg branches: 1.160.2; 1.160.4;
print pid, lid and p_comm in some diag messages that indicate killed processes.

1.160 Wed Dec 02 07:34:57 GMT 2009 mrg branches: 1.160.2; 1.160.4;
print pid, lid and p_comm in some diag messages that indicate killed processes.

1.160 Wed Dec 02 07:34:57 GMT 2009 mrg branches: 1.160.2; 1.160.4;
print pid, lid and p_comm in some diag messages that indicate killed processes.

/src/sys/arch/hpcmips/conf/
H A DGENERIC1.160 Wed Nov 10 17:54:04 GMT 2004 christos branches: 1.160.4; 1.160.6;
Add COMPAT_BSDPTY to the rest of the config files.

1.160 Wed Nov 10 17:54:04 GMT 2004 christos branches: 1.160.4; 1.160.6;
Add COMPAT_BSDPTY to the rest of the config files.

1.160 Wed Nov 10 17:54:04 GMT 2004 christos branches: 1.160.4; 1.160.6;
Add COMPAT_BSDPTY to the rest of the config files.

/src/sys/dev/isa/
H A Dfiles.isa1.160 Sun Jun 13 03:09:32 GMT 2010 tsutsui branches: 1.160.8; 1.160.12;
Tidy up a comment.

1.160 Sun Jun 13 03:09:32 GMT 2010 tsutsui branches: 1.160.8; 1.160.12;
Tidy up a comment.

1.160 Sun Jun 13 03:09:32 GMT 2010 tsutsui branches: 1.160.8; 1.160.12;
Tidy up a comment.

/src/sys/arch/arm/xscale/
H A Dixp425_if_npe.c1.38 Wed Apr 24 10:40:18 GMT 2019 msaitoh This driver uses MII(4) and have hook SIOCGIFMEDIA which just pass to
ifmedia_ioctl(), the hook is not required because ether_ioctl has it
(if_ethersubr.c rev. 1.160). This driver might require some additional fixes
for SIOCSIFMTU and other ioctl()s.

Completed in 172 milliseconds

1234567891011>>