Table of Contents
initcall_debug" >initcall_debug
bootgraph" >bootgraph
bootchart" >bootchart
gpio Oscilloscope" >gpio Oscilloscope
2. Kernel optimization method " >2. Kernel optimization method
kernel compression method " >kernel compression method
Loading location" >Loading location
Kernel clipping" >Kernel clipping
Preset lpj value" >Preset lpj value
initcall优化" >initcall优化
内核initcall_module并行" >内核initcall_module并行
减少pty/tty个数" >减少pty/tty个数
Home Operation and Maintenance Linux Operation and Maintenance Very useful speed optimization: make the system start faster

Very useful speed optimization: make the system start faster

Jul 31, 2023 pm 03:11 PM
optimization

In embedded products, system startup speed is a very critical indicator. The optimization of system startup speed is usually called "Quick Start".

To optimize the system startup speed, you must first knowhow to count the system startup time.

The following introduces several methods of counting the time taken by kernel startup, as well as several methods of optimizing kernel startup speed.

1. Startup time-consuming statistics

printk time

Open kernel configuration:

kernel hacking --->
[*] Show timing information on printks
Copy after login

After opening, a timestamp will be displayed in front of each printk

Mainly used to measure various stages of the kernel startup process The time-consuming

initcall_debug

As we all know, kernel will execute different levels of when it starts initcall, and the time consumption of each initcall can also be counted.

kernelcmdline中加入参数initcall_debug=1

initcall_debug=1
setargs_nand=setenv bootargs console=${console} earlyprintk=${earlyprintk} root=${nand_root} initcall_debug=${initcall_debug} init=${init}
Copy after login

开启后,就能打印每个initcall函数调用及耗时。

bootgraph

内核自带了一个工具用于统计启动时间:scripts/bootgraph.pl

使用该工具需要打开内核配置CONFIG_PRINTK_TIME=y,并且在cmdline中加上"initcall_debug=1"

系统启动之后,执行命令:

dmesg|perl $(kernel_dir)/script/bootgraph.pl > out.svg
Copy after login

用浏览器查看out.svg文件,可以看到内核启动过程中各个阶段的耗时。

这个工具有点类似于perf的火焰图,可以统计启动各阶段的耗时。

bootchart

除了内核自带的工具,也有开源的工具可用:bootchart

bootchart is an open source software tool used for performance analysis of the Linux startup process. It automatically collects CPU usage, process and other information during the system startup process, and displays the analysis results graphically, which can be used to guide and optimize the system startup process.

  • Modify kernel cmdline. Change init to "init=/sbin/bootchartd".
  • collect information. bootchartd will collect information from /proc/stat, /proc/diskstat, /proc/[pid]/stat. After processing, save it as a bootchart.tgz file
  • Convert the image. Use the pybootchartgui.py tool on pc to convert bootchart.tgz to bootchart.png to facilitate analysis

Finally, pictures will be produced for analysis, for example:

Very useful speed optimization: make the system start faster

bootchar is mainly used to measure the time taken from mounting the file system to starting the main application

gpio Oscilloscope

You can find a GPIO that is idle during system startup and set GPIO## in the appropriate location #level.

You can get the time consumption of each stage by capturing the waveform with an oscilloscope.

Usually this method is used to

measure the time-consuming of the entire startup, or the time-consuming of each stage. This method is also commonly used.

2. Kernel optimization method

kernel compression method

kernel has different compression formats, common ones are gz, xz, lzma, etc.

Different compression formats have different decompression speeds. By comparing the startup time and flash occupancy of different compression methods, choose one that meets the actual situation and optimize it.

Loading location

The kernel image can be self-decompressed by kernel or decompressed by uboot.

For kernel self-decompression, if the compressed kernel conflicts with the decompressed kernel address, it will be copied first Go to a safe place before unzipping to prevent self-covering. This requires time-consuming copying.

That is, setting the loading address and running address to different addresses can reduce time consumption.

Kernel clipping

Cutting the kernel is necessary. If the kernel image is too large, it will take a long time to decompress the kernel, so the kernel must Cut as much as possible.

Cutting the kernel can reduce the decompression time. Less initialization content will also reduce time consumption.

Therefore, when trimming the kernel, consider removing all unnecessary functions.

Preset lpj value

LPJ is loops_per_jiffy, which will be calculated every time it is started Once, but if no modifications are made, the value will be calculated the same every time it is started. You can directly provide the value to skip the calculation.

如下log所示,有skippedlpjtimer计算得来,不需要再校准calibrate了。

[ 0.019918] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
Copy after login

如果没有skipped,则可以在cmdline中添加lpj=xxx进行预设

initcall优化

如前面提到,initcall耗时是可以打印出来的,在cmdline中设置initcall_debug=1,即可打印跟踪所有内核初始化过程中调用的顺序以及耗时。

[ 0.021772] initcall sunxi_pinctrl_init+0x0/0x44 returned 0 after 9765 usecs
[ 0.067694] initcall param_sysfs_init+0x0/0x198 returned 0 after 29296 usecs
[ 0.070240] initcall genhd_device_init+0x0/0x88 returned 0 after 9765 usecs
[ 0.080405] initcall init_scsi+0x0/0x90 returned 0 after 9765 usecs
[ 0.090384] initcall mmc_init+0x0/0x84 returned 0 after 9765 usecs
Copy after login

根据打印信息,可以对耗时较多的initcall进行优化。

内核initcall_module并行

initcall有很多等级,但比较耗时的是module

如果是多核,可以考虑将module_initcall并行执行来节省时间。

目前内核do_initcalls是一个一个按照顺序来执行,可以修改成新建内核线程来执行

减少pty/tty个数

加入initcall打印之后,发现pty/tty init耗时很多,可减少个数来缩短init时间。

initcall pty_init+0x0/0x3c4 returned 0 after 239627 usecs
initcall chr_dev_init+0x0/0xdc returned 0 after 36581 usecs
Copy after login

内核module

只把必须要加进内核的才编译进内核,其他的编译成模块。

例如将必要的clockttypinctrl等编译进内核

3. Other optimizations

uboot

## If it is a

RISC-V architecture, you can consider removing uboot.

XIP

xip: eXecute In Place. That is, on-chip execution means that the CPU directly reads the program code from the memory for execution without reading it into the memory.

Generally our programs are placed in

flash. When the system starts, the program is copied from flash to ddr for execution. xip technology does not need to copy the program to ddr, so the speed will be very fast.

This technology must be supported by the chip. You can check whether the description of SPI in the chip manual supports the XIP function.

4. Summary

The above optimization of system startup speed is ultimately provided by Some ideas, some methods.

To optimize the startup speed, generally speaking requires a deeper understanding of the startup of the entire system.

Optimization is endless, it needs to be optimized according to the goal, taking into account the startup speed and effect.

The above is the detailed content of Very useful speed optimization: make the system start faster. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to optimize settings and improve performance after receiving a new Win11 computer? How to optimize settings and improve performance after receiving a new Win11 computer? Mar 03, 2024 pm 09:01 PM

How do we set up and optimize performance after receiving a new computer? Users can directly open Privacy and Security, and then click General (Advertising ID, Local Content, Application Launch, Setting Recommendations, Productivity Tools or directly open Local Group Policy Just use the editor to operate it. Let me introduce to you in detail how to optimize settings and improve performance after receiving a new Win11 computer. How to optimize settings and improve performance after receiving a new Win11 computer. One: 1. Press the [Win+i] key combination to open Settings, then click [Privacy and Security] on the left, and click [General (Advertising ID, Local Content, App Launch, Setting Suggestions, Productivity) under Windows Permissions on the right Tools)】.Method 2

In-depth interpretation: Why is Laravel as slow as a snail? In-depth interpretation: Why is Laravel as slow as a snail? Mar 07, 2024 am 09:54 AM

Laravel is a popular PHP development framework, but it is sometimes criticized for being as slow as a snail. What exactly causes Laravel's unsatisfactory speed? This article will provide an in-depth explanation of the reasons why Laravel is as slow as a snail from multiple aspects, and combine it with specific code examples to help readers gain a deeper understanding of this problem. 1. ORM query performance issues In Laravel, ORM (Object Relational Mapping) is a very powerful feature that allows

Decoding Laravel performance bottlenecks: Optimization techniques fully revealed! Decoding Laravel performance bottlenecks: Optimization techniques fully revealed! Mar 06, 2024 pm 02:33 PM

Decoding Laravel performance bottlenecks: Optimization techniques fully revealed! Laravel, as a popular PHP framework, provides developers with rich functions and a convenient development experience. However, as the size of the project increases and the number of visits increases, we may face the challenge of performance bottlenecks. This article will delve into Laravel performance optimization techniques to help developers discover and solve potential performance problems. 1. Database query optimization using Eloquent delayed loading When using Eloquent to query the database, avoid

C++ program optimization: time complexity reduction techniques C++ program optimization: time complexity reduction techniques Jun 01, 2024 am 11:19 AM

Time complexity measures the execution time of an algorithm relative to the size of the input. Tips for reducing the time complexity of C++ programs include: choosing appropriate containers (such as vector, list) to optimize data storage and management. Utilize efficient algorithms such as quick sort to reduce computation time. Eliminate multiple operations to reduce double counting. Use conditional branches to avoid unnecessary calculations. Optimize linear search by using faster algorithms such as binary search.

Discussion on Golang's gc optimization strategy Discussion on Golang's gc optimization strategy Mar 06, 2024 pm 02:39 PM

Golang's garbage collection (GC) has always been a hot topic among developers. As a fast programming language, Golang's built-in garbage collector can manage memory very well, but as the size of the program increases, some performance problems sometimes occur. This article will explore Golang’s GC optimization strategies and provide some specific code examples. Garbage collection in Golang Golang's garbage collector is based on concurrent mark-sweep (concurrentmark-s

Laravel performance bottleneck revealed: optimization solution revealed! Laravel performance bottleneck revealed: optimization solution revealed! Mar 07, 2024 pm 01:30 PM

Laravel performance bottleneck revealed: optimization solution revealed! With the development of Internet technology, the performance optimization of websites and applications has become increasingly important. As a popular PHP framework, Laravel may face performance bottlenecks during the development process. This article will explore the performance problems that Laravel applications may encounter, and provide some optimization solutions and specific code examples so that developers can better solve these problems. 1. Database query optimization Database query is one of the common performance bottlenecks in Web applications. exist

How to optimize the startup items of WIN7 system How to optimize the startup items of WIN7 system Mar 26, 2024 pm 06:20 PM

1. Press the key combination (win key + R) on the desktop to open the run window, then enter [regedit] and press Enter to confirm. 2. After opening the Registry Editor, we click to expand [HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorer], and then see if there is a Serialize item in the directory. If not, we can right-click Explorer, create a new item, and name it Serialize. 3. Then click Serialize, then right-click the blank space in the right pane, create a new DWORD (32) bit value, and name it Star

Vivox100s parameter configuration revealed: How to optimize processor performance? Vivox100s parameter configuration revealed: How to optimize processor performance? Mar 24, 2024 am 10:27 AM

Vivox100s parameter configuration revealed: How to optimize processor performance? In today's era of rapid technological development, smartphones have become an indispensable part of our daily lives. As an important part of a smartphone, the performance optimization of the processor is directly related to the user experience of the mobile phone. As a high-profile smartphone, Vivox100s's parameter configuration has attracted much attention, especially the optimization of processor performance has attracted much attention from users. As the "brain" of the mobile phone, the processor directly affects the running speed of the mobile phone.

See all articles