Searched hist:1.353 (Results 1 - 25 of 76) sorted by relevance

1234

/src/
H A Dbuild.sh1.353 Mon Jun 07 17:11:16 GMT 2021 christos Good bye oabi! Tested building earmv7hf.
H A DUPDATING1.353 Mon Jul 01 09:33:14 GMT 2024 martin Note update build lossage for binutils vs. binutils.old
/src/sys/ufs/ffs/
H A Dffs_vfsops.c1.353 Mon Apr 17 08:32:01 GMT 2017 hannken branches: 1.353.2; 1.353.4;
Remove unused argument "nextp" from vfs_busy() and vfs_unbusy().
Remove argument "keepref" from vfs_unbusy() and add vfs_ref() where needed.
1.353 Mon Apr 17 08:32:01 GMT 2017 hannken branches: 1.353.2; 1.353.4;
Remove unused argument "nextp" from vfs_busy() and vfs_unbusy().
Remove argument "keepref" from vfs_unbusy() and add vfs_ref() where needed.
1.353 Mon Apr 17 08:32:01 GMT 2017 hannken branches: 1.353.2; 1.353.4;
Remove unused argument "nextp" from vfs_busy() and vfs_unbusy().
Remove argument "keepref" from vfs_unbusy() and add vfs_ref() where needed.
/src/sys/arch/i386/conf/
H A Dfiles.i3861.353 Sun Jan 03 04:06:31 GMT 2010 dholland branches: 1.353.2; 1.353.4;
One last bit of whitespace from PR kern/22595.
1.353 Sun Jan 03 04:06:31 GMT 2010 dholland branches: 1.353.2; 1.353.4;
One last bit of whitespace from PR kern/22595.
1.353 Sun Jan 03 04:06:31 GMT 2010 dholland branches: 1.353.2; 1.353.4;
One last bit of whitespace from PR kern/22595.
H A DALL1.353 Sat Apr 06 16:57:32 GMT 2013 martin Add athn
/src/distrib/notes/common/
H A Dmain1.353 Tue Jul 31 05:18:19 GMT 2007 jnemeth branches: 1.353.2; 1.353.4;
update portmaster list again after recent updates to website
1.353 Tue Jul 31 05:18:19 GMT 2007 jnemeth branches: 1.353.2; 1.353.4;
update portmaster list again after recent updates to website
1.353 Tue Jul 31 05:18:19 GMT 2007 jnemeth branches: 1.353.2; 1.353.4;
update portmaster list again after recent updates to website
/src/doc/
H A DBRANCHES1.353 Mon Apr 06 18:15:57 GMT 2020 martin Document the phil-wifi branch
/src/sys/arch/mac68k/mac68k/
H A Dmachdep.c1.353 Fri Jul 26 10:48:44 GMT 2019 rin branches: 1.353.2;
Add genfb(4) driver for mac68k grfbus.
1, 2, 4, 8, 15, and 32 color-depths are supported.

ANSI colors on console are functional for depth >= 4.

Graphic applications based on wsfb API should work, provided
they can correctly handle fbi_fboffset and your color depth.

wsfb driver of Xorg 1.20 and mlterm-fb (framebuffer version of
x11/mlterm) work fine for depth == 1 || depth >= 8.

For depth == 8 (256 colors), graphic applications require
colormap callback, which is currently supported for some
internal graphic adapters, and only Civic (found on Quadra
AV series) was tested. Register definition and its usage are
taken from Linux. You can easily support other adapters if
Linux supports that.

Have fun, and any problem reports are welcomed!

1.353 Fri Jul 26 10:48:44 GMT 2019 rin branches: 1.353.2;
Add genfb(4) driver for mac68k grfbus.
1, 2, 4, 8, 15, and 32 color-depths are supported.

ANSI colors on console are functional for depth >= 4.

Graphic applications based on wsfb API should work, provided
they can correctly handle fbi_fboffset and your color depth.

wsfb driver of Xorg 1.20 and mlterm-fb (framebuffer version of
x11/mlterm) work fine for depth == 1 || depth >= 8.

For depth == 8 (256 colors), graphic applications require
colormap callback, which is currently supported for some
internal graphic adapters, and only Civic (found on Quadra
AV series) was tested. Register definition and its usage are
taken from Linux. You can easily support other adapters if
Linux supports that.

Have fun, and any problem reports are welcomed!

/src/sys/arch/alpha/conf/
H A DGENERIC1.353 Sun Jun 30 21:38:55 GMT 2013 rmind G/C PFIL_HOOKS from the kernel configs.

/src/distrib/sets/lists/comp/
H A Dshl.mi1.353 Fri Aug 04 08:54:00 GMT 2023 mrg more updates for sets and GCC 12

- renable sanitizer, add new shlib versions, enable tsan for arm64,
including moving some stuff into the per-cpu/arch dir from 'mi'.
- fix mips64, 68k, and ia64
- mark many any-gcc-version things just as "gcc" and remove dups
- mark many gcc=9 only things as obsolete
- mark many gcc=10 only things as obsolete with gcc=12 (more could
be done here.)
/src/distrib/sets/lists/debug/
H A Dshl.mi1.353 Sat Nov 02 22:02:38 GMT 2024 christos make zstd a private library (for now)
/src/share/misc/
H A Dacronyms.comp1.353 Fri May 26 03:30:57 GMT 2023 jschauma +CRDT conflict-free replicated data type
+UDS Unix Domain Socket

/src/share/mk/
H A Dbsd.prog.mk1.353 Tue Jan 14 19:44:43 GMT 2025 riastradh bsd.prog.mk: Define and cache LIBDO.${_lib} for PROGDPLIBS.

Don't define PROGDO.${_lib} and then check for BINDO.${_lib}.

LIBDO is what is documented in bsd.README; this makes more sense in
context than PROGDO or BINDO -- LIBDO.foo is the objdir for the
_library_ foo.

Should reduce build cost in submakes for programs that link against
libraries with PROGDPLIBS.
/src/sys/arch/macppc/conf/
H A DGENERIC1.353 Wed Apr 10 00:49:49 GMT 2019 sevan Include CARP support by default
/src/sys/kern/
H A Dinit_main.c1.353 Thu Apr 24 18:39:23 GMT 2008 ad branches: 1.353.2;
Merge proc::p_mutex and proc::p_smutex into a single adaptive mutex, since
we no longer need to guard against access from hardware interrupt handlers.

Additionally, if cloning a process with CLONE_SIGHAND, arrange to have the
child process share the parent's lock so that signal state may be kept in
sync. Partially addresses PR kern/37437.
1.353 Thu Apr 24 18:39:23 GMT 2008 ad branches: 1.353.2;
Merge proc::p_mutex and proc::p_smutex into a single adaptive mutex, since
we no longer need to guard against access from hardware interrupt handlers.

Additionally, if cloning a process with CLONE_SIGHAND, arrange to have the
child process share the parent's lock so that signal state may be kept in
sync. Partially addresses PR kern/37437.
H A Dkern_sig.c1.353 Wed May 01 17:21:55 GMT 2019 kamil Add eventswitch() in signal code

Route all crash and debugger related signal through eventswitch(), that
calls sigswitch() with preprocessed arguments.

This code avoids code duplication and allows to introduce changes that
will affect all callers of sigswitch() in debugger-related events.

No functional change intended.
H A Dkern_synch.c1.353 Mon Dec 05 15:47:14 GMT 2022 martin If no more softints are pending on this cpu, clear ci_want_resched
(instead of just assingning ci_data.cpu_softints to it - the bitsets
are not the same).
Discussed on tech-kern "ci_want_resched bits vs. MD ci_data.cpu_softints bits".
/src/sys/netinet/
H A Dtcp_input.c1.353 Wed Jan 04 00:35:14 GMT 2017 kre branches: 1.353.2;

Remove redundant tests: if optlen === 0, then optlen % 4 != 2 (it is 0)
so there is no need to test both.
1.353 Wed Jan 04 00:35:14 GMT 2017 kre branches: 1.353.2;

Remove redundant tests: if optlen === 0, then optlen % 4 != 2 (it is 0)
so there is no need to test both.
/src/sys/ufs/lfs/
H A Dlfs_vfsops.c1.353 Mon Mar 13 14:24:20 GMT 2017 riastradh #if DIAGNOSTIC panic ---> KASSERT

Replace some #if DEBUG by this too. DEBUG is only for expensive
assertions; these are not.
/src/sys/uvm/
H A Duvm_map.c1.353 Sat Oct 28 00:37:13 GMT 2017 pgoyette Update the kernhist(9) kernel history code to address issues identified
in PR kern/52639, as well as some general cleaning-up...

(As proposed on tech-kern@ with additional changes and enhancements.)

Details of changes:

* All history arguments are now stored as uintmax_t values[1], both in
the kernel and in the structures used for exporting the history data
to userland via sysctl(9). This avoids problems on some architectures
where passing a 64-bit (or larger) value to printf(3) can cause it to
process the value as multiple arguments. (This can be particularly
problematic when printf()'s format string is not a literal, since in
that case the compiler cannot know how large each argument should be.)

* Update the data structures used for exporting kernel history data to
include a version number as well as the length of history arguments.

* All [2] existing users of kernhist(9) have had their format strings
updated. Each format specifier now includes an explicit length
modifier 'j' to refer to numeric values of the size of uintmax_t.

* All [2] existing users of kernhist(9) have had their format strings
updated to replace uses of "%p" with "%#jx", and the pointer
arguments are now cast to (uintptr_t) before being subsequently cast
to (uintmax_t). This is needed to avoid compiler warnings about
casting "pointer to integer of a different size."

* All [2] existing users of kernhist(9) have had instances of "%s" or
"%c" format strings replaced with numeric formats; several instances
of mis-match between format string and argument list have been fixed.

* vmstat(1) has been modified to handle the new size of arguments in the
history data as exported by sysctl(9).

* vmstat(1) now provides a warning message if the history requested with
the -u option does not exist (previously, this condition was silently
ignored, with only a single blank line being printed).

* vmstat(1) now checks the version and argument length included in the
data exported via sysctl(9) and exits if they do not match the values
with which vmstat was built.

* The kernhist(9) man-page has been updated to note the additional
requirements imposed on the format strings, along with several other
minor changes and enhancements.

[1] It would have been possible to use an explicit length (for example,
uint64_t) for the history arguments. But that would require another
"rototill" of all the users in the future when we add support for an
architecture that supports a larger size. Also, the printf(3) format
specifiers for explicitly-sized values, such as "%"PRIu64, are much
more verbose (and less aesthetically appealing, IMHO) than simply
using "%ju".

[2] I've tried very hard to find "all [the] existing users of kernhist(9)"
but it is possible that I've missed some of them. I would be glad to
update any stragglers that anyone identifies.

/src/sys/arch/sparc64/sparc64/
H A Dlocore.s1.353 Tue Jan 07 20:11:35 GMT 2014 palle sun4v: trap table setup - currently populated with dummy entries which will be properly implemented later - parts from OpenBSD - OK martin@
/src/sys/dev/ata/
H A Dwd.c1.353 Tue Dec 11 02:02:31 GMT 2007 jmcneill Make this compile again.
/src/sys/arch/sparc/sparc/
H A Dpmap.c1.353 Mon Nov 25 02:59:14 GMT 2013 christos replace circleq with tailq.
XXX: this adds a pointer per mmu entry; we can do better, but it would
require custom lists. Is it worth it?

/src/sys/dev/ic/
H A Dcom.c1.353 Sun Dec 09 16:00:40 GMT 2018 thorpej sparc64 doesn't have a scalar bus_space_handle_t, so cope with this.
Also, add a comment about why we're using the dummy / nil space handle
in the first place.
/src/sys/arch/alpha/alpha/
H A Dmachdep.c1.353 Mon Mar 25 19:24:30 GMT 2019 maxv Remove compat_osf1, discussed on tech-kern@.

Completed in 538 milliseconds

1234