Revert r327828, r327949, r327953, r328016-r328026, r328041:Uses of mallocarray(9).The use of mallocarray(9) has rocketed the required swap to build FreeBSD.This is likely caused by the allocation
Revert r327828, r327949, r327953, r328016-r328026, r328041:Uses of mallocarray(9).The use of mallocarray(9) has rocketed the required swap to build FreeBSD.This is likely caused by the allocation size attributes which put extra pressureon the compiler.Given that most of these checks are superfluous we have to choose betterwhere to use mallocarray(9). We still have more uses of mallocarray(9) buthopefully this is enough to bring swap usage to a reasonable level.Reported by: woschPR: 225197
show more ...
dev: make some use of mallocarray(9).Focus on code where we are doing multiplications within malloc(9). None ofthese is likely to overflow, however the change is still useful as somestatic checke
dev: make some use of mallocarray(9).Focus on code where we are doing multiplications within malloc(9). None ofthese is likely to overflow, however the change is still useful as somestatic checkers can benefit from the allocation attributes we use formallocarray.This initial sweep only covers malloc(9) calls with M_NOWAIT. No goodreason but I started doing the changes before r327796 and at that time itwas convenient to make sure the sorrounding code could handle NULL values.
sys/dev: further adoption of SPDX licensing ID tags.Mainly focus on files that use BSD 2-Clause license, however the tool Iwas using misidentified many licenses so this was mostly a manual - error
sys/dev: further adoption of SPDX licensing ID tags.Mainly focus on files that use BSD 2-Clause license, however the tool Iwas using misidentified many licenses so this was mostly a manual - errorprone - task.The Software Package Data Exchange (SPDX) group provides a specificationto make it easier for automated tools to detect and summarize well knownopensource licenses. We are gradually adopting the specification, notingthat the tags are considered only advisory and do not, in any way,superceed or replace the license texts.
Remove pc98 support completely.I thank all developers and contributors for pc98.Relnotes: yes
Replace explicit calls to video methods with their respective variantsimplemented with macros. This patch improves code readability. Reasoningbehind vidd_* is a sort of "video discipline".List of
Replace explicit calls to video methods with their respective variantsimplemented with macros. This patch improves code readability. Reasoningbehind vidd_* is a sort of "video discipline".List of macros is supposed to be complete--all methods of video_switchought to have their respective macros from now on.Functionally, this code should be no-op. My intention is to leave currentbehaviour of touched code as is.No objections: rwatsonSilence on: freebsd-current@Approved by: cognet
Optimize set_origin() use in some screensavers to stop them eatingcpu power when the origin hasn't changed.PR: kern/100683Submitted by: Gareth McCaughan <gareth -dot- mccaughan -at- pobox.com>M
Optimize set_origin() use in some screensavers to stop them eatingcpu power when the origin hasn't changed.PR: kern/100683Submitted by: Gareth McCaughan <gareth -dot- mccaughan -at- pobox.com>MFC after: 3 days
Use the clear function provided by the video adapter driver.Submitted by: [email protected] (Chiharu Shibata)
Add new graphical screen saver (dragon_saver).Add support for NEC PC-9821 PEGC screen (fire/logo/rain/warp_saver).
Remove unneeded header.
More machdep/random.h -> sys/random.h fixes.
$Id$ -> $FreeBSD$
The second phase of syscons reorganization.- Split syscons source code into manageable chunks and reorganize some of complicated functions.- Many static variables are moved to the softc structu
The second phase of syscons reorganization.- Split syscons source code into manageable chunks and reorganize some of complicated functions.- Many static variables are moved to the softc structure.- Added a new key function, PREV. When this key is pressed, the vty immediately before the current vty will become foreground. Analogue to PREV, which is usually assigned to the PrntScrn key. PR: kern/10113 Submitted by: Christian Weisgerber <[email protected]>- Modified the kernel console input function sccngetc() so that it handles function keys properly.- Reorganized the screen update routine.- VT switching code is reorganized. It now should be slightly more robust than before.- Added the DEVICE_RESUME function so that syscons no longer hooks the APM resume event directly.- New kernel configuration options: SC_NO_CUTPASTE, SC_NO_FONT_LOADING, SC_NO_HISTORY and SC_NO_SYSMOUSE. Various parts of syscons can be omitted so that the kernel size is reduced. SC_PIXEL_MODE Made the VESA 800x600 mode an option, rather than a standard part of syscons. SC_DISABLE_DDBKEY Disables the `debug' key combination. SC_ALT_MOUSE_IMAGE Inverse the character cell at the mouse cursor position in the text console, rather than drawing an arrow on the screen. Submitted by: Nick Hibma ([email protected]) SC_DFLT_FONT makeoptions "SC_DFLT_FONT=_font_name_" Include the named font as the default font of syscons. 16-line, 14-line and 8-line font data will be compiled in. This option replaces the existing STD8X16FONT option, which loads 16-line font data only.- The VGA driver is split into /sys/dev/fb/vga.c and /sys/isa/vga_isa.c.- The video driver provides a set of ioctl commands to manipulate the frame buffer.- New kernel configuration option: VGA_WIDTH90 Enables 90 column modes: 90x25, 90x30, 90x43, 90x50, 90x60. These modes are mot always supported by the video card. PR: i386/7510 Submitted by: [email protected] and [email protected].- The header file machine/console.h is reorganized; its contents is now split into sys/fbio.h, sys/kbio.h (a new file) and sys/consio.h (another new file). machine/console.h is still maintained for compatibility reasons.- Kernel console selection/installation routines are fixed and slightly rebumped so that it should now be possible to switch between the interanl kernel console (sc or vt) and a remote kernel console (sio) again, as it was in 2.x, 3.0 and 3.1.- Screen savers and splash screen decoders Because of the header file reorganization described above, screen savers and splash screen decoders are slightly modified. After this update, /sys/modules/syscons/saver.h is no longer necessary and is removed.
MFS: indent-assisted style cleanup.
A little closer to style(9).
Add missing copyright.
Add "fire" screen saver.Submitted by: Brad Forschinger <[email protected]>