Linux kernel

The Linux kernel is a free and open-source,[6][7] monolithic, modular,[8] multitasking, Unix-like operating system kernel.[9] It was conceived and created in 1991 by Linus Torvalds[10] for his i386 based PC, and it was soon adopted as the kernel for the GNU Operating System,[11] which was created as open source and free software, and inspired by UNIX.[12] Since then, it has spawned a plethora of operating system distributions, commonly also called Linux.

Linux kernel
Tux the penguin, mascot of Linux[1]
Linux kernel 3.0.0 booting
DeveloperLinus Torvalds and thousands of collaborators
Written inC (95.7%), and other languages including C++ and assembly[2]
OS familyUnix-like
Initial release0.02 (5 October 1991 (1991-10-05))
Latest release5.10.13[3] (3 February 2021 (2021-02-03)) [±]
Latest preview5.11-rc6[4] (31 January 2021 (2021-01-31)) [±]
Repository
Available inEnglish
Kernel typeMonolithic
LicenseGNU GPLv2 (only) with some code under compatible GPL variants or under permissive licenses like BSD, MIT[5]
Official websitewww.kernel.org

Linux is deployed on a wide variety of computing systems, such as embedded devices, mobile devices (including its use in the Android operating system), personal computers, servers, mainframes, and supercomputers.[13] It can be tailored for specific architectures and for several usage scenarios using a family of simple commands (that is, without the need of manually editing its source code before compilation);[14][15][16] privileged users can also fine-tune kernel parameters at runtime.[17][18][19] Most of the Linux kernel code is written using the GNU extensions of GCC[20][21] to the standard C programming language and with the use of architecture specific instructions (ISA). This produces a highly optimized executable (vmlinux) with respect to utilization of memory space and task execution times.[22]

Day-to-day development discussions take place on the Linux kernel mailing list (LKML). Changes are tracked using the version control system git, which was created by Torvalds as a bespoke replacement for BitKeeper. Linux as a whole is released under the GNU General Public License version 2 (GPLv2),[23] but it also contains several files under other compatible licenses,[5] and an ad hoc exemption for the user space API header files (UAPI).

History

Linus Torvalds at the LinuxCon Europe 2014 in Düsseldorf

In April 1991, Linus Torvalds, at the time a 21-year-old computer science student at the University of Helsinki, Finland, started working on some simple ideas for an operating system. He started with a task switcher in Intel 80386 assembly language and a terminal driver. On 25 August 1991, Torvalds posted the following to comp.os.minix, a newsgroup on Usenet:[24]

I'm doing a (free) operating system (just a hobby, won't be big and professional like gnu) for 386(486) AT clones. This has been brewing since April, and is starting to get ready. I'd like any feedback on things people like/dislike in minix, as my OS resembles it somewhat (same physical layout of the file-system (due to practical reasons) among other things). I've currently ported bash(1.08) and gcc(1.40), and things seem to work. This implies that I'll get something practical within a few months [...] Yes - it's free of any minix code, and it has a multi-threaded fs. It is NOT protable [sic] (uses 386 task switching etc), and it probably never will support anything other than AT-harddisks, as that's all I have :-(.

On 17 September 1991, Torvalds prepared version 0.01 of Linux and put on the "ftp.funet.fi" – FTP server of the Finnish University and Research Network (FUNET). It was not even executable since its code still needed Minix for compilation and play.[25]

On 5 October 1991, Torvalds announced the first "official" version of Linux, version 0.02.[26] At this point, Linux was able to run Bash, GCC, and some other GNU utilities:[26][25]

[As] I mentioned a month ago, I'm working on a free version of a Minix-lookalike for AT-386 computers. It has finally reached the stage where it's even usable (though may not be depending on what you want), and I am willing to put out the sources for wider distribution. It is just version 0.02...but I've successfully run bash, gcc, gnu-make, gnu-sed, compress, etc. under it.

After that, many people contributed code to the project, including some developers from the MINIX community. At the time, the GNU Project had created many of the components required for a free operating system, but its own kernel, GNU Hurd, was incomplete and unavailable. The Berkeley Software Distribution had not yet freed itself from legal encumbrances. Despite the limited functionality of the early versions, Linux rapidly gained developers and users.

Torvalds assigned version 0 to the kernel to indicate that it was mainly for testing and not intended for productive use.[27] Version 0.11, released in December 1991, was the first self-hosted Linux, for it could be compiled by a computer running the same kernel.

When Torvalds released version 0.12 in February 1992, he adopted the GNU General Public License version 2 (GPLv2) over his previous self-drafted license, which had not permitted commercial redistribution.[28] In contrast to Unix, all source files of Linux are freely available, including device drivers.[29] The initial success of Linux was driven by programmers and testers across the world. With the support of the POSIX APIs, through the libC that, whether needed, acts as an entry point to the kernel address space, Linux could run software and applications that had been developed for Unix.[30]

The Linux kernel supports various hardware architectures, providing a common platform for software, including proprietary software.

On 19 January 1992, the first post to the new newsgroup alt.os.linux was submitted.[31] On 31 March 1992, the newsgroup was renamed comp.os.linux.[32] The fact that Linux is a monolithic kernel rather than a microkernel was the topic of a debate between Andrew S. Tanenbaum, the creator of MINIX, and Torvalds.[33] The Tanenbaum–Torvalds debate started in 1992 on the Usenet group comp.os.minix as a general discussion about kernel architectures.[34][35]

Linux version 0.95 was the first to be capable of running the X Window System.[36] In March 1994, Linux 1.0.0 was released with 176,250 lines of code.[37] It was the first version suitable for use in production environments.[27]

It started a versioning system for the kernel with three or four numbers separated by dots where the first represented the major release, the second was the minor release, and the third was the revision.[38] At that time odd-numbered minor releases were for development and tests, whilst even numbered minor releases were for production. The optional fourth digit indicated a set of patches to a revision.[27] Development releases were indicated with -rc ("release candidate") suffix.

The current version numbering is slightly different from the above. The even vs. odd numbering has been dropped and a specific major version is now indicated by the first two numbers, taken as a whole. While the time-frame is open for the development of the next major, the -rcN suffix is used to identify the n'th release candidate for the next version.[39] For example, the release of the version 4.16 was preceded by seven 4.16-rcN (from -rc1 to -rc7). Once a stable release is made, its maintenance is passed off to the “stable team". Occasional updates to stable releases are identified by a three numbering scheme (e.g., 4.13.1, 4.13.2, ..., 4.13.16).[39]

Version 1.2 (released 7 March 1995)[40] gained support for computer systems using processors based on the Alpha, SPARC, and MIPS architectures.

After version 1.3 of the kernel, Torvalds decided that Linux had evolved enough to warrant a new major number, so he released version 2.0.0 in June 1996.[41][42] The series included 41 releases. The major feature of 2.0 was support for symmetric multiprocessing (SMP) and support for more types of processors.

Starting with version 2.0, Linux is configurable for selecting specific hardware targets and for enabling architecture specific features and optimizations.[30] The make *config family of commands of kbuild are used to enable and configure thousands of options for building ad hoc kernel executables (vmlinux) and loadable modules.[14][15]

Version 2.2, released on 20 January 1999,[43] removed the "Big Kernel Lock", that was a global spinlock, and provided improved SMP support, added support for the m68k and PowerPC architectures, and added new file systems (including read-only support for Microsoft's NTFS).[44] In 1999, IBM published its patches to the Linux 2.2.13 code for the support of the S/390 architecture.[45]

Version 2.4.0, released on 4 January 2001,[46] contained support for ISA Plug and Play, USB, and PC Cards.[47] It also included support for the PA-RISC processor from Hewlett-Packard. Development for 2.4.x changed a bit in that more features were made available throughout the duration of the series, including support for Bluetooth, Logical Volume Manager (LVM) version 1, RAID support, InterMezzo and ext3 file systems.

Version 2.6.0 was released on 17 December 2003.[48] The development for 2.6.x changed further towards including new features throughout the duration of the series. Among the changes that have been made in the 2.6 series are: integration of µClinux into the mainline kernel sources, PAE support, support for several new lines of CPUs, integration of Advanced Linux Sound Architecture (ALSA) into the mainline kernel sources, support for up to 232 users (up from 216), support for up to 229 process IDs (64-bit only, 32-bit arches still limited to 215),[49] substantially increased the number of device types and the number of devices of each type, improved 64-bit support, support for file systems which support file sizes of up to 16 terabytes, in-kernel preemption, support for the Native POSIX Thread Library (NPTL), User-mode Linux integration into the mainline kernel sources, SELinux integration into the mainline kernel sources, InfiniBand support, and considerably more.

Also notable are the addition of a wide selection of file systems starting with the 2.6.x releases: now the kernel supports a large number of file systems, some that have been designed for Linux, like ext3, ext4, FUSE, Btrfs,[50] and others that are native of other operating systems like JFS, XFS, Minix, Xenix, Irix, Solaris, System V, Windows and MS-DOS.[51]

In 2005 the stable team was formed as a response to the lack of a kernel tree where people could work on bug fixes, and it would keep updating stable versions.[52] In February 2008 the linux-next tree was created to serve as a place where patches aimed to be merged during the next development cycle gathered.[53][54] Several subsystem maintainers also adopted the suffix -next for trees containing code which they mean to submit for inclusion in the next release cycle. As of January 2014, the in-development version of Linux is held in an unstable branch named linux-next.[55]

Linux used to be maintained without the help of an automated source code management system until, in 2002, development switched to BitKeeper. It was freely available for Linux developers but it was not free software. In 2005, because of efforts to reverse-engineer it, the company which owned the software revoked the support of the Linux community. In response, Torvalds and others wrote Git. The new system was written within weeks, and in two months the first official kernel made using it was released.[56]

Details on the history of the 2.6 kernel series can be found in the ChangeLog files on the 2.6 kernel series source code release area of kernel.org.[57]

The 20th anniversary of Linux was celebrated by Torvalds in July 2011 with the release of the 3.0.0 kernel version.[41] As 2.6 has been the version number for 8 years, a new uname26 personality that reports 3.x as 2.6.40+x had to be added to the kernel so that old programs would work.[58]

Version 3.0 was released on 22 July 2011.[59] On 30 May 2011, Torvalds announced that the big change was "NOTHING. Absolutely nothing." and asked, "...let's make sure we really make the next release not just an all new shiny number, but a good kernel too."[60] After the expected 6–7 weeks of the development process, it would be released near the 20th anniversary of Linux.

On 11 December 2012, Torvalds decided to reduce kernel complexity by removing support for i386 processors, making the 3.7 kernel series the last one still supporting the original processor.[61][62] The same series unified support for the ARM processor.[63]

Version 3.11, released on 2 September 2013,[64] adds many new features such as new O_TMPFILE flag for open(2) to reduce temporary file vulnerabilities, experimental AMD Radeon dynamic power management, low-latency network polling, and zswap (compressed swap cache).[65]

The numbering change from 2.6.39 to 3.0, and from 3.19 to 4.0, involved no meaningful technical differentiation. The major version number was increased to avoid large minor numbers.[59][66] Stable 3.x.y kernels were released until 3.19 in February 2015.

In April 2015, Torvalds released kernel version 4.0.[41] By February 2015, Linux had received contributions from nearly 12,000 programmers from more than 1,200 companies, including some of the world's largest software and hardware vendors.[67] Version 4.1 of Linux, released in June 2015, contains over 19.5 million lines of code contributed by almost 14,000 programmers.[68]

A total of 1,991 developers, of whom 334 are first collaborators, added more than 553,000 lines of code to version 5.8, breaking the record previously held by version 4.9.[69]

According to the Stack Overflow’s annual Developer Survey of 2019, more than the 53% of all respondents have developed software for Linux OS and about 27% for Android,[70] although only about 25% develop with Linux-based operating systems.[71]

Most websites run on Linux-based operating systems[72][73] and all of the world's 500 most powerful supercomputers use some kind of OS based on Linux.[74]

Linux distributions bundle the kernel with system software (eg., the GNU C Library, systemd, and others Unix utilities and daemons) and a wide selection of application software, but their usage share in desktops is low in comparison to other operating systems.

Android, which accounts for the majority of the installed base of all operating systems for mobile devices,[75][76][77] is responsible for the rising usage of the Linux kernel,[30] together with its wide use in a large variety of embedded devices.

Architecture

Map of the Linux kernel

Linux is a monolithic kernel with a modular design (e.g, it can insert and remove loadable kernel modules at runtime), supporting most features once only available in closed source kernels of non-free operating systems:

Device drivers and kernel extensions run in kernel space (ring 0 in many CPU architectures), with full access to the hardware, although some exceptions run in user space, for example, filesystems based on FUSE/CUSE, and parts of UIO.[95][96] The graphics system most people use with Linux does not run within the kernel. Unlike standard monolithic kernels, device drivers are easily configured as modules, and loaded or unloaded while the system is running and can also be pre-empted under certain conditions in order to handle hardware interrupts correctly and to better support symmetric multiprocessing.[80] By choice, Linux has no stable device driver application binary interface.[97]

Linux typically makes use of memory protection and virtual memory and can also handle non-uniform memory access,[98] however the project has absorbed μClinux which also makes it possible to run Linux on microcontrollers without virtual memory.[99]

The hardware is represented in the file hierarchy. User applications interact with device drivers via entries in the /dev or /sys directories.[100] Processes information as well are mapped to the file system through the /proc directory.[100]

Various layers within Linux, also showing separation between the userland and kernel space
User mode User applications bash, LibreOffice, GIMP, Blender, 0 A.D., Mozilla Firefox, ...
System components Daemons:
systemd, runit, logind, networkd, PulseAudio, ...
Window manager:
X11, Wayland, SurfaceFlinger (Android)
Graphics:
Mesa, AMD Catalyst, ...
Other libraries:
GTK+, Qt, EFL, SDL, SFML, FLTK, GNUstep, ...
C standard library open(), exec(), sbrk(), socket(), fopen(), calloc(), ... (up to 2000 subroutines)
glibc aims to be fast, musl and uClibc target embedded systems, bionic written for Android, etc. All aim to be POSIX/SUS-compatible.
Kernel mode Linux kernel stat, splice, dup, read, open, ioctl, write, mmap, close, exit, etc. (about 380 system calls)
The Linux kernel System Call Interface (SCI, aims to be POSIX/SUS-compatible)
Process scheduling
subsystem
IPC
subsystem
Memory management
subsystem
Virtual files
subsystem
Network
subsystem
Other components: ALSA, DRI, evdev, LVM, device mapper, Linux Network Scheduler, Netfilter
Linux Security Modules: SELinux, TOMOYO, AppArmor, Smack
Hardware (CPU, main memory, data storage devices, etc.)

Interfaces

Four interfaces are distinguished: two internal to the kernel, and two between the kernel and userspace.

Linux is a clone of UNIX, and aims towards POSIX and Single UNIX Specification compliance.[101] The kernel also provides system calls and other interfaces that are Linux-specific. In order to be included in the official kernel, the code must comply with a set of licensing rules.[23][5]

The Linux Application binary interface (ABI) between the kernel and the user space has four degrees of stability (stable, testing, obsolete, removed);[102] however, the system calls are expected to never change in order to not break the userspace programs that rely on them.[103]

Loadable kernel modules (LKMs), by design, cannot rely on a stable ABI.[104] Therefore they must always be recompiled whenever a new kernel executable is installed in a system, otherwise they will not be loaded. In-tree drivers that are configured to become an integral part of the kernel executable (vmlinux) are statically linked by the building process.

There is also no guarantee of stability of source-level in-kernel API[97] and, because of this, device drivers code, as well as the code of any other kernel subsystem, must be kept updated with kernel evolution. Any developer who makes an API change is required to fix any code that breaks as the result of their change.[105]

Kernel-to-userspace API

The set of the Linux kernel API that regards the interfaces exposed to user applications is fundamentally composed of UNIX and Linux-specific system calls.[106] A system call is an entry point into the Linux kernel.[107] For example, among the Linux-specific ones there is the family of the clone(2) system calls.[108] Most extensions must be enabled by defining the _GNU_SOURCE macro in a header file or when the user-land code is being compiled.[109]

System calls can only be invoked by using assembly instructions which enable the transition from unprivileged user space to privileged kernel space in ring 0. For this reason, the C standard library (libC) acts as a wrapper to most Linux system calls, by exposing C functions that, only whether it is needed,[110] can transparently enter into the kernel which will execute on behalf of the calling process.[106] For those system calls not exposed by libC, e.g. the fast userspace mutex (futex),[111] the library provides a function called syscall(2) which can be used to explicitly invoke them.[112]

Pseudo filesystems (e.g., the sysfs and procfs filesystems) and special files (e.g., /dev/random, /dev/sda, /dev/tty, and many others) constitute another layer of interface to kernel data structures representing hardware or logical (software) devices.[113][114]

Kernel-to-userspace ABI

Because of the differences existing between the hundreds of various implementations of the Linux OS, executable objects, even though they are compiled, assembled, and linked for running on a specific hardware architecture (that is, they use the ISA of the target hardware), often cannot run on different Linux Distributions. This issue is mainly due to distribution-specific configurations and a set of patches applied to the code of the Linux kernel, differences in system libraries, services (daemons), filesystem hierarchies, and environment variables.

The main standard concerning application and binary compatibility of Linux distributions is the Linux Standard Base (LSB).[115][116] However, the LSB goes beyond what concerns the Linux kernel, because it also defines the desktop specifications, the X libraries and Qt that have little to do with it.[117] The LSB version 5 is built upon several standards and drafts (POSIX, SUS, X/Open, File System Hierarchy (FHS), and others).[118]

The parts of the LSB largely relevant to the kernel are the General ABI (gABI),[119] especially the System V ABI[120][121] and the Executable and Linking Format (ELF),[122][123] and the Processor Specific ABI (psABI), for example the Core Specification for X86-64.[124][125]

The standard ABI for how x86_64 user programs invoke system calls is to load the syscall number into the rax register, and the other parameters into rdi, rsi, rdx, r10, r8, and r9, and finally to put the syscall assembly instruction in the code.[126][127][128]

In-kernel API

At XDC2014, Alex Deucher from AMD announced the unified kernel-mode driver.[129] The proprietary Linux graphic driver, libGL-fglrx-glx, will share the same DRM infrastructure with Mesa 3D. As there is no stable in-kernel ABI, AMD had to constantly adapt the former binary blob used by Catalyst.

There are several kernel internal APIs utilized between the different subsystems. Some are available only within the kernel subsystems, while a somewhat limited set of in-kernel symbols (i.e., variables, data structures and functions) is exposed also to dynamically loadable modules (e.g., device drivers loaded on demand) whether they're exported with the EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL() macros[130][131] (the latter reserved to modules released under a GPL-compatible license).[132]

Linux provides in-kernel APIs that manipulate data structures (e.g., linked lists, radix trees,[133] red-black trees,[134] queues) or perform common routines (e.g., copy data from and to user space, allocate memory, print lines to the system log, and so on) that have remained stable at least since Linux version 2.6.[135][136][137]

In-kernel APIs include libraries of low-level common services used by device drivers:

In-kernel ABI

The Linux developers choose not to maintain a stable in-kernel ABI.[146] Modules compiled for a specific version of the kernel cannot be loaded into another version without being re-compiled, assuming that the source level in-kernel API has remained the same, otherwise also the module code must be modified accordingly.[97]

Processes and threads

Linux creates processes by means of the clone(2) or by the newer clone3(2)[147] system calls. Depending on the given parameters, the new entity can share most or none of the resources of the caller. These syscalls can create new entities ranging from new independent processes (each having a special identifier called TGID within the task_struct data structure in kernel space, although that same identifier is called PID in userspace), to new threads of execution within the calling process (by using the CLONE_THREAD parameter). In this latter case the new entity owns the same TGID of the calling process and consequently has also the same PID in userspace.[148][149]

If the executable is dynamically linked to shared libraries, an interpreter (for ELF objects it is typically /lib/ld-linux.so.2) is used to find and load the needed objects, prepare the program to run and then run it.[150]

The Native POSIX Thread Library, simply known as the NPTL,[151] provides the standard POSIX threads interface (pthreads) to userspace[152] Whenever a new thread is created using the pthread_create(3) POSIX interface,[153] the clone(2) family of system calls must also be given the address of the function that the new thread must jump to. The Linux kernel provides the futex(7) (acronym for "Fast user-space mutexes") mechanisms for fast user-space locking and synchronization;[154] the majority of the operations are performed in userspace but it may be necessary to communicate with the kernel using the futex(2) system call.[111]

A very special category of threads is the so-called kernel threads. They must not be confused with the above-mentioned threads of execution of the user's processes. Kernel threads exist only in kernel space and their only purpose is to concurrently run kernel tasks.[155]

Differently, whenever an independent process is created, the syscalls return exactly to the next instruction of the same program, concurrently in parent process and in child's one (i.e., one program, two processes). Different return values (one per process) enable the program to know in which of the two processes it is currently executing. Programs need this information because the child process, a few steps after process duplication, usually invokes the execve(2) system call (possibly via the family of exec(3) wrapper functions in glibC) and replace the program that is currently being run by the calling process with a new program, with newly initialized stack, heap, and (initialized and uninitialized) data segments.[156] When it is done, it results in two processes that run two different programs.

Depending on the effective user id (euid), and on the effective group id (egid), a process running with user zero privileges (root, the system administrator, owns the identifier 0) can perform everything (e.g., kill all the other processes or recursively wipe out whole filesystems), instead non zero user processes cannot. Capabilities(7) divides the privileges traditionally associated with superuser into distinct units, which can be independently enabled and disabled by the parent process or dropped by the child itself.[157]

Scheduling and preemption

Linux enables different scheduling classes and policies.[158] By default the kernel uses a scheduler mechanism called the Completely Fair Scheduler introduced in the 2.6.23 version of the kernel.[81] Internally this default-scheduler class is also known as SCHED_OTHER, but the kernel also contains two POSIX-compliant[159] real-time scheduling classes named SCHED_FIFO (realtime first-in-first-out) and SCHED_RR (realtime round-robin), both of which take precedence over the default class.[158] An additional scheduling policy known as SCHED_DEADLINE, implementing the earliest deadline first algorithm (EDF), was added in kernel version 3.14, released on 30 March 2014.[160][161] SCHED_DEADLINE takes precedence over all the other scheduling classes.

Linux provides both user preemption as well as full kernel preemption.[162] Preemption reduces latency, increases responsiveness,[163] and makes Linux more suitable for desktop and real-time applications.

With user preemption, the kernel scheduler can replace the current process with the execution of a context switch to a different one that therefore acquires the computing resources for running (CPU, memory, and more). It makes it according to the CFS algorithm (in particular it uses a variable called vruntime for sorting processes), to the active scheduler policy and to the processes relative priorities. With kernel preemption, the kernel can preempt itself when an interrupt handler returns, when kernel tasks block, and whenever a subsystem explicitly calls the schedule() function.

The Linux kernel patch PREEMPT_RT enables full preemption of critical sections, interrupt handlers, and "interrupt disable" code sequences.[164] Partial integration of the real-time Linux patches brought the above mentioned functionality to the kernel mainline.[165]

Memory management

Memory management in Linux is a complex topic. First of all, the kernel is not pageable (i.e., it is always resident in physical memory and cannot be swapped to the disk). In the kernel there is no memory protection (no SIGSEGV signals, unlike in userspace), therefore memory violations lead to instability and system crashes.[166]

The Linux Storage Stack Diagram[167]

Supported architectures

TiVo DVR, a consumer device running Linux

While not originally designed to be portable,[24][168] Linux is now one of the most widely ported operating system kernels, running on a diverse range of systems from the ARM architecture to IBM z/Architecture mainframe computers. The first port was performed on the Motorola 68000 platform. The modifications to the kernel were so fundamental that Torvalds viewed the Motorola version as a fork and a "Linux-like operating system".[168] However, that moved Torvalds to lead a major restructure of the code to facilitate porting to more computing architectures. The first Linux that, in a single source tree, had code for more than i386 alone, supported the DEC Alpha AXP 64-bit platform.[169][170][168]

Linux runs as the main operating system on IBM's Summit; as of October 2019, all of the world's 500 fastest supercomputers run some operating system based on the Linux kernel,[13] a big change from 1998 when the first Linux supercomputer got added to the list.[171]

Linux has also been ported to various handheld devices such as Apple's iPhone 3G and iPod.[172]

Supported devices

In 2007, the LKDDb project has been started to build a comprehensive database of hardware and protocols known by Linux kernels.[173] The database is build automatically by static analysis of the kernel sources. Later in 2014 the Linux Hardware project was launched to automatically collect a database of all tested hardware configurations with the help of users of various Linux distributions. [174]

Live patching

Rebootless updates can even be applied to the kernel by using live patching technologies such as Ksplice, kpatch and kGraft. Minimalistic foundations for live kernel patching were merged into the Linux kernel mainline in kernel version 4.0, which was released on 12 April 2015. Those foundations, known as livepatch and based primarily on the kernel's ftrace functionality, form a common core capable of supporting hot patching by both kGraft and kpatch, by providing an application programming interface (API) for kernel modules that contain hot patches and an application binary interface (ABI) for the userspace management utilities. However, the common core included into Linux kernel 4.0 supports only the x86 architecture and does not provide any mechanisms for ensuring function-level consistency while the hot patches are applied. As of April 2015, there is ongoing work on porting kpatch and kGraft to the common live patching core provided by the Linux kernel mainline.[175][176][177]

Security

Kernel bugs present potential security issues. For example, they may allow for privilege escalation or create denial-of-service attack vectors. Over the years, numerous bugs affecting system security were found and fixed.[178] New features are frequently implemented to improve the kernel's security.[179][180]

Capabilities(7) have already been introduced in the section about the processes and threads. Android makes use of them and Systemd gives administrators detailed control over the capabilities of processes.[181]

Linux offers a wealth of mechanisms to reduce kernel attack surface and improve security which are collectively known as the Linux Security Modules (LSM).[182] They comprise the Security-Enhanced Linux (SELinux) module, whose code has been originally developed and then released to the public by the NSA,[183] and AppArmor[94] among others. SELinux is now actively developed and maintained on GitHub.[93] SELinux and AppArmor provide support to access control security policies, including mandatory access control (MAC), though they profoundly differ in complexity and scope.

Another security feature is the Seccomp BPF (SECure COMPuting with Berkeley Packet Filters) which works by filtering parameters and reducing the set of system calls available to user-land applications.[184]

Critics have accused kernel developers of covering up security flaws or at least not announcing them; in 2008, Linus Torvalds responded to this with the following:[185][186]

I personally consider security bugs to be just "normal bugs". I don't cover them up, but I also don't have any reason what-so-ever to think it's a good idea to track them and announce them as something special...one reason I refuse to bother with the whole security circus is that I think it glorifies—and thus encourages—the wrong behavior. It makes "heroes" out of security people, as if the people who don't just fix normal bugs aren't as important. In fact, all the boring normal bugs are way more important, just because there's[sic] a lot more of them. I don't think some spectacular security hole should be glorified or cared about as being any more "special" than a random spectacular crash due to bad locking.

Linux distributions typically release security updates to fix vulnerabilities in the Linux kernel. Many offer long-term support releases that receive security updates for a certain Linux kernel version for an extended period of time.

Development

Developer community

The community of Linux kernel developers comprises about 5000-6000 members. According to the "2017 State of Linux Kernel Development", a study issued by the Linux Foundation, covering the commits for the releases 4.8 to 4.13, about 1500 developers were contributing from about 200-250 companies on average. The top 30 developers contributed a little more than 16% of the code. As of companies, the top contributors are Intel (13.1%) and Red Hat (7.2%), Linaro (5.6%), IBM (4.1%), the second and fifth places are held by the 'none' (8.2%) and 'unknown' (4.1%) categories.[187]

Instead of a roadmap, there are technical guidelines. Instead of a central resource allocation, there are persons and companies who all have a stake in the further development of the Linux kernel, quite independently from one another: People like Linus Torvalds and I don’t plan the kernel evolution. We don’t sit there and think up the roadmap for the next two years, then assign resources to the various new features. That's because we don’t have any resources. The resources are all owned by the various corporations who use and contribute to Linux, as well as by the various independent contributors out there. It's those people who own the resources who decide...

Andrew Morton, 2005

Source code management

The Linux development community uses Git to manage the source code. Git users clone the latest version of Torvalds' tree with git-clone(1)[188] and keep it up to date using git-pull(1).[189][190] Contributions are submitted as patches, in the form of text messages on the LKML (and often also on other mailing lists dedicated to particular subsystems). The patches must conform to a set of rules and to a formal language that, among other things, describes which lines of code are to be deleted and what others are to be added to the specified files. These patches can be automatically processed so that system administrators can apply them in order to make just some changes to the code or to incrementally upgrade to the next version.[191] Linux is distributed also in GNU zip (gzip) and bzip2 formats.

Submitting code to the kernel

A developer who wants to change the Linux kernel starts with developing and testing that change. Depending on how significant the change is and how many subsystems it modifies, the change will either be submitted as a single patch or in multiple patches of source code. In case of a single subsystem that is maintained by a single maintainer, these patches are sent as e-mails to the maintainer of the subsystem with the appropriate mailing list in Cc. The maintainer and the readers of the mailing list will review the patches and provide feedback. Once the review process has finished the subsystem maintainer accepts the patches in the relevant Git kernel tree. If the changes to the Linux kernel are bug fixes that are considered important enough, a pull request for the patches will be sent to Torvalds within a few days. Otherwise, a pull request will be sent to Torvalds during the next merge window. The merge window usually lasts two weeks and starts immediately after the release of the previous kernel version.[192] The Git kernel source tree names all developers who have contributed to the Linux kernel in the Credits directory and all subsystem maintainers are listed in Maintainers.[193]

Programming language and coding style

Linux is written in a special C programming language supported by GCC, a compiler that extends in many ways the C standard, for example using inline sections of code written in the assembly language (in GCC's "AT&T-style" syntax) of the target architecture. Since 2002 all the code must adhere to the 21 rules comprising the Linux Kernel Coding Style.[194][195]

GNU toolchain

The GNU Compiler Collection (GCC or GNU cc) is the default compiler for the mainline Linux sources and it is invoked by a utility called make. Then, the GNU Assembler (more often called GAS or GNU as) outputs the object files from the GCC generated assembly code. Finally, the GNU Linker (GNU ld) is used to produce a statically linked executable kernel file called vmlinux. as and ld are part of a package called GNU binutils. The above-mentioned tools are collectively known as the GNU toolchain.

Compiler compatibility

GCC was for a long time the only compiler capable of correctly building Linux. In 2004, Intel claimed to have modified the kernel so that its C compiler was also capable of compiling it.[196] There was another such reported success in 2009, with a modified 2.6.22 version.[197][198]

Since 2010, effort has been underway to build Linux with Clang, an alternative compiler for the C language;[199] as of 12 April 2014, the official kernel could almost be compiled by Clang.[200][201] The project dedicated to this effort is named LLVMLinux after the LLVM compiler infrastructure upon which Clang is built.[202] LLVMLinux does not aim to fork either Linux or the LLVM, therefore it is a meta-project composed of patches that are eventually submitted to the upstream projects. By enabling Linux to be compiled by Clang, developers may benefit from shorter compilation times.[203]

In 2017, developers completed upstreaming patches to support building the Linux kernel with Clang in the 4.15 release, having backported support for X86-64 and AArch64 to the 4.4, 4.9, and 4.14 branches of the stable kernel tree. Google's Pixel 2 shipped with the first Clang built Linux kernel,[204] though patches for Pixel (1st generation) did exist.[205] 2018 saw ChromeOS move to building kernels with Clang by default,[206] while Android (operating system) made Clang[207] and LLVM's linker LLD[208] required for kernel builds in 2019. Google moved its production kernel used throughout its datacenters to being built with Clang in 2020.[209] Today, the ClangBuiltLinux group coordinates fixes to both Linux and LLVM to ensure compatibility, both composed of members from LLVMLinux and having upstreamed patches from LLVMLinux.

Kernel debugging

An example of Linux kernel panic

Linux bugs can be very hard to find out and fix, firstly because of kernel interaction with userspace and hardware and secondly because they might be caused from a wider number of reasons than those which can affect user programs. A few examples of the underlying causes are semantic errors in code, misuse of synchronization primitives, and an incorrect hardware management.[210]

A report of a non-fatal bug in the kernel is called an "oops"; such deviations from correct behavior of the Linux kernel may allow continued operation with compromised reliability.[211]

A critical and fatal error is reported via the "panic()" function. It prints a message and then halts the kernel.[212]

One of the most common techniques used to find out bugs in code is debugging by printing. For this purpose Linux provides an in-kernel API called printk() which stores messages in a circular buffer. The syslog(2) system call is used for reading and/or clearing the kernel message ring buffer and for setting the maximum log level of the messages to be sent to the console (i.e., one of the eight KERN_* parameters of printk(), which tell the severity of the condition reported); usually it is invoked via the glibC wrapper klogctl(3).[213] Kernel messages are also exported to userland through the /dev/kmsg interface[214] (e.g., systemd-journald[215][216] reads that interface and by default append the messages to /var/log/journal).

Another fundamental technique for debugging a running kernel is tracing. The ftrace mechanism is a Linux internal tracer; it is used for monitoring and debugging Linux at runtime and it can also analyze user space latencies due to kernel misbehavior.[217][218][219] Furthermore, ftrace allows users to trace Linux at boot-time.[220]

kprobes and kretprobes can break (like debuggers in userspace) into Linux and non-disruptively collect information.[221] kprobes can be inserted into code at (almost) any address, while kretprobes work at function return. uprobes have similar purposes but they also have some differences in usage and implementation.[222]

With KGDB Linux can be debugged in much the same way as userspace programs. KGDB requires an additional machine that runs GDB and that is connected to the target to be debugged using a serial cable or Ethernet.[223]

Development model

The Linux kernel project integrates new code on a rolling basis. Software checked into the project must work and compile without error. For each kernel subsystem there is a maintainer who is responsible for reviewing patches against the kernel code standards and keeps a queue of patches that can be submitted to Linus Torvalds within a merge window of several weeks. Patches are merged by Torvalds into the source code of the prior stable Linux kernel release, creating the -rc release candidate for the next stable kernel. Once the merge window is closed only fixes to the new code in the development release are accepted. The -rc development release of the kernel goes through regression tests and once it is judged to be stable by Torvalds and the kernel subsystem maintainers a new Linux kernel is released and the development process starts all over again.[224]

Developers who feel treated unfairly can report this to the Linux Foundation's Technical Advisory Board.[225] In July 2013 the maintainer of the USB 3.0 driver Sarah Sharp asked Torvalds to address the abusive commentary in the kernel development community. In 2014, Sharp backed out of Linux kernel development, saying that "The focus on technical excellence, in combination with overloaded maintainers, and people with different cultural and social norms, means that Linux kernel maintainers are often blunt, rude, or brutal to get their job done".[226] At the linux.conf.au (LCA) conference in 2018, developers expressed the view that the culture of the community has gotten much better in the past few years. Daniel Vetter, the maintainer of the Intel drm/i915 graphics kernel driver, commented that the "rather violent language and discussion" in the kernel community has decreased or disappeared.[227]

Laurent Pinchart asked developers for feedback on their experience with the kernel community at the 2017 Embedded Linux Conference Europe. The issues brought up were a few days later discussed at the Maintainers Summit. Concerns over the lack of consistency in how maintainers responded to patches submitted by developers were echoed by Shuah Khan, the maintainer of the kernel self-test framework. Torvalds contended that there would never be consistency in the handling of patches because different kernel subsystems have over time adopted different development processes. Therefore, it was agreed upon that each kernel subsystem maintainer would document the rules for patch acceptance.[228]

Linux forks

An iPod booting iPodLinux

There are certain communities that develop kernels based on the official Linux. Some interesting bits of code from these forks (i.e., a slang term meaning "derived projects") that include Linux-libre, Compute Node Linux, INK, L4Linux, RTLinux, and User-Mode Linux (UML) have been merged into the mainline.[229] Some operating systems developed for mobile phones initially used heavily modified versions of Linux, including Google Android, Firefox OS, HP webOS, Nokia Maemo and Jolla Sailfish OS. In 2010, the Linux community criticised Google for effectively starting its own kernel tree:[230][231]

This means that any drivers written for Android hardware platforms, can not get merged into the main kernel tree because they have dependencies on code that only lives in Google's kernel tree, causing it to fail to build in the kernel.org tree. Because of this, Google has now prevented a large chunk of hardware drivers and platform code from ever getting merged into the main kernel tree. Effectively creating a kernel branch that a number of different vendors are now relying on.[232]

Greg Kroah-Hartman, 2010

Today Android uses a slightly customized Linux[233] where changes are implemented in device drivers so that little or no change to the core kernel code is required. Android developers also submit patches to the official Linux that finally can boot the Android operating system. For example, a Nexus 7 can boot and run the mainline Linux.[233]

At a 2001 presentation at the Computer History Museum, Linus Torvalds had this to say in response to a question about distributions of Linux using precisely the same kernel sources or not:

They're not...well they are, and they're not. There is no single kernel. Every single distribution has their own changes. That's been going on since pretty much day one. I don't know if you may remember Yggdrasil was known for having quite extreme changes to the kernel and even today all of the major vendors have their own tweaks because they have some portion of the market they're interested in and quite frankly that's how it should be. Because if everybody expects one person, me, to be able to track everything that's not the point of GPL. That's not the point of having an open system. So actually the fact that a distribution decides that something is so important to them that they will add patches for even when it's not in the standard kernel, that's a really good sign for me. So that's for example how something like ReiserFS got added. And the reason why ReiserFS is the first journaling filesystem that was integrated in the standard kernel was not because I love Hans Reiser. It was because SUSE actually started shipping with ReiserFS as their standard kernel, which told me "ok." This is actually in production use. Normal People are doing this. They must know something I don't know. So in a very real sense what a lot of distribution houses do, they are part of this "let's make our own branch" and "let's make our changes to this." And because of the GPL, I can take the best portions of them.[234]

Linus Torvalds, 2001

Development community conflicts

There have been several notable conflicts among Linux kernel developers. Examples of such conflicts are:

  • In July 2007, Con Kolivas announced that he would cease developing for the Linux kernel.[235][236]
  • In July 2009, Alan Cox quit his role as the TTY layer maintainer after disagreement with Linus Torvalds.[237]
  • In December 2010, there was a discussion between Linux SCSI maintainer James Bottomley and SCST maintainer Vladislav Bolkhovitin about which SCSI target stack should be included in the Linux kernel.[238] This made some Linux users upset.[239]
  • In June 2012, Torvalds made it very clear that he did not agree with NVIDIA releasing its drivers as closed.[240]
  • In April 2014, Torvalds banned Kay Sievers from submitting patches to the Linux kernel for failing to deal with bugs that caused systemd to negatively interact with the kernel.[241]
  • In October 2014, Lennart Poettering accused Torvalds of tolerating the rough discussion style on Linux kernel related mailing lists and of being a bad role model.[242]
  • In March 2015, Christoph Hellwig filed a lawsuit against VMware for infringement of the copyright on the Linux kernel.[243] Linus Torvalds made it clear that he did not agree with this and similar initiatives by calling lawyers a festering disease.[244]

Prominent Linux kernel developers have been aware of the importance of avoiding conflicts between developers.[245] For a long time there was no code of conduct for kernel developers due to opposition by Linus Torvalds.[246] However, a Linux Kernel Code of Conflict was introduced on 8 March 2015.[247] It was replaced on 16 September 2018 by a new Code of Conduct based on the Contributor Covenant. This coincided with a public apology by Torvalds and a brief break from kernel development.[248][249] On 30 November 2018, complying with the Code of Conduct, Jarkko Sakkinen of Intel sent out patches replacing instances of "fuck" appearing in source code comments with suitable versions focused on the word 'hug'.[250]

Codebase

As of 2020, the 5.9 release of the Linux kernel had around 27.8 million lines of code, roughly 14% of the code is part of the "core" (arch, kernel and mm directories) while 60% is drivers.

Linux is evolution, not intelligent design!

Estimated cost to redevelop

Redevelopment costs of Linux kernel

The cost to redevelop the Linux kernel version 2.6.0 in a traditional proprietary development setting has been estimated to be US$612 million (€467M, £394M) in 2004 prices using the COCOMO person-month estimation model.[254] In 2006, a study funded by the European Union put the redevelopment cost of kernel version 2.6.8 higher, at €882M ($1.14bn, £744M).[255]

This topic was revisited in October 2008 by Amanda McPherson, Brian Proffitt, and Ron Hale-Evans. Using David A. Wheeler's methodology, they estimated redevelopment of the 2.6.25 kernel now costs $1.3bn (part of a total $10.8bn to redevelop Fedora 9).[256] Again, Garcia-Garcia and Alonso de Magdaleno from University of Oviedo (Spain) estimate that the value annually added to kernel was about €100M between 2005 and 2007 and €225M in 2008, it would cost also more than €1bn (about $1.4bn as of February 2010) to develop in the European Union.[257]

As of 7 March 2011, using then-current LOC (lines of code) of a 2.6.x Linux kernel and wage numbers with David A. Wheeler's calculations it would cost approximately $3bn (about €2.2bn) to redevelop the Linux kernel as it keeps getting bigger. An updated calculation as of 26 September 2018, using then-current 20,088,609 LOC (lines of code) for the 4.14.14 Linux kernel and the current US National average programmer salary of $75,506 show it would cost approximately $14,725,449,000 dollars (£11,191,341,000) to rewrite the existing code.[258]

Maintenance and long-term support

Boot messages of a Linux kernel 2.6.25.17

The latest kernel version and older kernel versions are maintained separately. Most latest kernel releases were supervised by Linus Torvalds.[259] Current versions are released by Greg Kroah-Hartman.[260]

The Linux kernel developer community maintains a stable kernel by applying fixes for software bugs that have been discovered during the development of the subsequent stable kernel. Therefore, www.kernel.org will always list two stable kernels. The next stable Linux kernel is now released only 8 to 12 weeks later. Therefore, the Linux kernel maintainers have designated some stable kernel releases as longterm, these long-term support Linux kernels are updated with bug fixes for two or more years.[261] In November 2019 there were five longterm Linux kernels: 4.19.84, 4.14.154, 4.9.201, 4.4.201 and 3.16.76.[262] The full list of releases is at Linux kernel version history.

Relation with Linux distributions

Most Linux users run a kernel supplied by their Linux distribution. Some distributions ship the "vanilla" or "stable" kernels. However, several Linux distribution vendors (such as Red Hat and Debian) maintain another set of Linux kernel branches which are integrated into their products. These are usually updated at a slower pace compared to the "vanilla" branch, and they usually include all fixes from the relevant "stable" branch, but at the same time they can also add support for drivers or features which had not been released in the "vanilla" version the distribution vendor started basing their branch from.

GPLv2 licensing terms

Initially, Torvalds released Linux under a license which forbade any commercial use.[263] This was changed in version 0.12 by a switch to the GNU General Public License version 2 (GPLv2).[28] This license allows distribution and sale of possibly modified and unmodified versions of Linux but requires that all those copies be released under the same license and be accompanied by the complete corresponding source code.[264] Torvalds has described licensing Linux under the GPLv2 as the "best thing I ever did".[263]

The Linux kernel is licensed explicitly only under version 2 of the GPL,[23] without offering the licensee the option to choose "any later version", which is a common GPL extension. The official git branch of Torvalds contains documentation that explains the kernel development process to people who want to work with the community and contribute code; it clearly states that "[Any] contributions which are not covered by a [GPLv2] compatible license will not be accepted into the kernel.".[105]

There was considerable debate about how easily the license could be changed to use later GPL versions (including version 3), and whether this change is even desirable.[265] Torvalds himself specifically indicated upon the release of version 2.4.0 that his own code is released only under version 2.[266] However, the terms of the GPL state that if no version is specified, then any version may be used,[267] and Alan Cox pointed out that very few other Linux contributors had specified a particular version of the GPL.[268]

In September 2006, a survey of 29 key kernel programmers indicated that 28 preferred GPLv2 to the then-current GPLv3 draft. Torvalds commented, "I think a number of outsiders... believed that I personally was just the odd man out because I've been so publicly not a huge fan of the GPLv3."[269] This group of high-profile kernel developers, including Torvalds, Greg Kroah-Hartman and Andrew Morton, commented on mass media about their objections to the GPLv3.[270] They referred to clauses regarding DRM/tivoization, patents, "additional restrictions" and warned a Balkanisation of the "Open Source Universe" by the GPLv3.[270][271] Linus Torvalds, who decided not to adopt the GPLv3 for the Linux kernel, reiterated his criticism even years later.[272]

Loadable kernel modules

It is debated whether some loadable kernel modules (LKMs) are to be considered derivative works under copyright law, and thereby whether or not they fall under the terms of the GPL.

In accordance with the license rules, LKMs using only a public subset of the kernel interfaces[130][131] are non-derived works, thus Linux gives system administrators the mechanisms to load out-of-tree binary objects into the kernel address space.[5]

There are some out-of-tree loadable modules that make legitimate use of the dma_buf kernel feature.[273] GPL compliant code can certainly use it. However, a different possible use case would be Nvidia Optimus that pairs a fast GPU with an Intel integrated GPU, where the Nvidia GPU writes into the Intel framebuffer when it is active. But, Nvidia cannot use this infrastructure because it necessitates bypassing a rule that can only be used by LKMs that are also GPL.[132] Alan Cox replied on LKML, rejecting a request from one of their engineers to remove this technical enforcement from the API.[274] Torvalds clearly stated on the LKML that "[I] claim that binary-only kernel modules ARE derivative "by default"'".[275]

On the other hand, Torvalds has also said that "[one] gray area in particular is something like a driver that was originally written for another operating system (i.e. clearly not a derived work of Linux in origin). THAT is a gray area, and _that_ is the area where I personally believe that some modules may be considered to not be derived works simply because they weren't designed for Linux and don't depend on any special Linux behaviour".[276] Proprietary graphics drivers, in particular, are heavily discussed.

Firmware binary blobs

The official kernel, that is the Linus git branch at the kernel.org repository, does not contain any kind of proprietary code;[23][5] however Linux can search the filesystems to locate proprietary firmware, drivers, and other executable modules (collectively known as "binary blobs"), then it can load and link them into the kernel space.[277] Whenever proprietary modules are loaded into Linux, the kernel marks itself as being "tainted"[278] and therefore bug reports from tainted kernels will often be ignored by developers.

When it is needed (e.g., for accessing boot devices or for speed) firmware can be built-in to the kernel, this means building the firmware into vmlinux; however this is not always a viable option for technical or legal issues (e.g., it is not permitted to firmware that is non-GPL compatible).[279]

Trademark

Linux is a registered trademark of Linus Torvalds in the United States, the European Union, and some other countries.[280][281] A legal battle over the trademark began in 1996, when William Della Croce, a lawyer who was never involved in the development of Linux, started requesting licensing fees for the use of the word Linux. After it was proven that the word was in common use long before Della Croce's claimed first use, the trademark was awarded to Torvalds.[282][283][284]

See also

References

  1. "Linux Logos and Mascots". Linux Online. 2008. Archived from the original on 15 August 2010. Retrieved 11 August 2009.
  2. The Linux Kernel Open Source Project on Open Hub: Languages Page
  3. Kroah-Hartman, Greg (3 February 2021). "Linux 5.10.13". LKML (Mailing list). Retrieved 4 February 2021.
  4. Torvalds, Linus (31 January 2021). "Linux 5.11-rc6". LKML (Mailing list). Retrieved 3 February 2021.
  5. "Linux kernel licensing rules — The Linux Kernel documentation". www.kernel.org. Retrieved 6 January 2020.
  6. Tanenbaum, Andrew; Bos, Herbert (2015). Modern Operating Systems. United States of America: Pearson. p. 722. ISBN 9781292061429. OCLC 892574803.
  7. Love, Robert (2010). Linux kernel development. Addison-Wesley. p. 4. ISBN 978-0-672-32946-3. OCLC 268788260.
  8. Love, Robert (2010). Linux kernel development. Addison-Wesley. p. 338. ISBN 978-0-672-32946-3. OCLC 268788260.
  9. "README". git.kernel.org.
  10. Richardson, Marjorie (1 November 1999). "Interview: Linus Torvalds". Linux Journal. Retrieved 20 August 2009.
  11. Williams, Sam (March 2002). "Chapter 9: The GNU General Public License". Free as in Freedom: Richard Stallman's Crusade for Free Software. O'Reilly. ISBN 0-596-00287-4. Retrieved 12 November 2010.
  12. Unix System Laboratories v. Berkeley Software, 832 F. Supp. 790 (D.N.J. 1993).
  13. "TOP500 Supercomputer Sites: Operating system Family / Linux". Top500.org. Retrieved 5 October 2019.
  14. "Kernel Build System — The Linux Kernel documentation". www.kernel.org. Retrieved 17 July 2020.
  15. "Kconfig make config — The Linux Kernel documentation". www.kernel.org. Retrieved 13 September 2020.
  16. "KernelBuild - Linux Kernel Newbies". kernelnewbies.org. Retrieved 13 September 2020.
  17. "The Sysctl Interface". www.linux.it. Retrieved 13 September 2020.
  18. "sysctl(8) - Linux manual page". man7.org. Retrieved 13 September 2020.
  19. "procfs(5) - Linux manual page". man7.org. Retrieved 13 September 2020.
  20. Love, Robert (2010). Linux Kernel Development. Addison Wesley. p. 18. ISBN 978-0-672-32946-3. OCLC 268788260.
  21. "C Extensions (Using the GNU Compiler Collection (GCC))". gcc.gnu.org. Retrieved 13 November 2020.
  22. Love, Robert (2010). Linux Kernel Development. USA: Addison Wesley. pp. 379–380. ISBN 9780672329463.
  23. "Linux source code: COPYING (v5.4.8) - Bootlin". elixir.bootlin.com. Retrieved 6 January 2020.
  24. Torvalds, Linus Benedict (26 August 1991). "What would you like to see most in minix?". Newsgroup: comp.os.minix. Usenet: 1991Aug25.205708.9541@klaava.Helsinki.FI.
  25. Welsh, Matt; Dalheimer, Matthias Kalle; Kaufman, Lar (1999). "1". Running Linux (3rd ed.). Sebastopol, CA: O'Reilly Media, Inc. ISBN 1-56592-976-4. OCLC 50638246.
  26. "Free minix-like kernel sources for 386-AT - Google Groups". groups.google.com. 5 October 1991. Retrieved 19 March 2020.
  27. Christine Bresnahan & Richard Blum (2016). LPIC-2: Linux Professional Institute Certification Study Guide: Exam 201 and Exam 202. John Wiley & Sons. p. 107. ISBN 9781119150794.
  28. Torvalds, Linus. "Release Notes for Linux v0.12". The Linux Kernel Archives. Retrieved 21 February 2007.
  29. Fred Hantelmann (2016). LINUX Start-up Guide: A self-contained introduction. Springer Science & Business Media. p. 1. ISBN 9783642607493.
  30. Fred Hantelmann (2016). LINUX Start-up Guide: A self-contained introduction. Springer Science & Business Media. p. 16. ISBN 9783642607493.
  31. Summers, David W. (19 January 1992). "Troubles with Partitions". Newsgroup: alt.os.linux. Usenet: 1992Jan19.085628.18752@cseg01.uark.edu. Retrieved 7 January 2007.
  32. Clegg, Alan B. (31 March 1992). "It's here!". Newsgroup: comp.os.linux. Usenet: 1992Mar31.131811.19832@rock.concert.net. Retrieved 7 January 2007.
  33. "Appendix A: The Tanenbaum-Torvalds Debate". Open Sources: Voices from the Open Source Revolution. O'Reilly. 1999. ISBN 1-56592-582-3. Retrieved 22 November 2006.
  34. Tanenbaum, Andy (29 January 1992). "LINUX is obsolete". Newsgroup: comp.os.minix. Usenet: 12595@star.cs.vu.nl. Retrieved 10 May 2006.
  35. Tanenbaum, Andy (12 May 2006). "Tanenbaum-Torvalds Debate: Part II". VU University Amsterdam. Retrieved 6 January 2007.
  36. November 2012, David Hayward22. "The history of Linux: how time has shaped the penguin". TechRadar. Retrieved 19 March 2020.
  37. November 2012, David Hayward22. "The history of Linux: how time has shaped the penguin". TechRadar. Retrieved 26 March 2020.
  38. Love, Robert (Robert M.) (2010). Linux kernel development (3rd ed.). Upper Saddle River, NJ: Addison-Wesley. p. 9. ISBN 978-0-672-32946-3. OCLC 268788260.
  39. "How the development process works — The Linux Kernel documentation". www.kernel.org. Retrieved 26 March 2020.
  40. "Kernel 1.2 Source Code Release". Retrieved 27 October 2008.
  41. Christine Bresnahan & Richard Blum (2016). LPIC-2: Linux Professional Institute Certification Study Guide: Exam 201 and Exam 202. John Wiley & Sons. p. 108. ISBN 9781119150794.
  42. Torvalds, Linus (9 June 1996). "Linux 2.0 really _is_ released." LKML (Mailing list). Retrieved 8 March 2015.
  43. Torvalds, Linus (20 January 1999). "2.2.0-final". LKML (Mailing list). Retrieved 8 March 2015.
  44. "The Wonderful World of Linux 2.2". 26 January 1999. Retrieved 27 October 2008.
  45. "Linux/390 Observations and Notes". linuxvm.org. Retrieved 29 March 2020.
  46. Torvalds, Linus (4 January 2001). "And oh, btw." LKML (Mailing list). Retrieved 8 March 2015.
  47. "The Wonderful World of Linux 2.4". Archived from the original on 17 March 2005. Retrieved 27 October 2008.
  48. Torvalds, Linus (17 December 2003). "Linux 2.6.0". LKML (Mailing list). Retrieved 28 February 2015.
  49. "proc(5) - Linux manual page" (see /proc/sys/kernel/pid_max).
  50. "btrfs Wiki". btrfs.wiki.kernel.org. Retrieved 17 July 2020.
  51. Fred Hantelmann (2016). LINUX Start-up Guide: A self-contained introduction. Springer Science & Business Media. pp. 1–2. ISBN 9783642607493.
  52. Kroah-Hartman, Greg (3 August 2006). "Adrian Bunk is now taking over the 2.6.16-stable branch". LKML (Mailing list). Retrieved 21 February 2015.
  53. Rothwell, Stephen (12 February 2008). "Announce: Linux-next (Or Andrew's dream :-))". LKML (Mailing list). Retrieved 30 October 2010.
  54. Corbet, Jonathan (21 October 2010). "linux-next and patch management process". LWN.net. Eklektix, Inc. Retrieved 30 October 2010.
  55. "The Linux Kernel Archives". Kernel.org. Retrieved 22 January 2014.
  56. Linux Kernel Mailing List (17 June 2005). "Linux 2.6.12". git-commits-head (Mailing list).
  57. "Index of /pub/linux/kernel/v2.6". Kernel.org. Retrieved 2 March 2014.
  58. "Add a personality to report 2.6.x version numbers [LWN.net]". lwn.net.
  59. Torvalds, Linus (21 July 2011). "Linux 3.0 release". Linux kernel mailing list. Retrieved 16 May 2013.
  60. Torvalds, Linus (30 May 2011). "Linux 3.0-rc1". LKML (Mailing list). Archived from the original on 31 May 2011. Retrieved 1 July 2013.
  61. Vaughan-Nichols, Steven J. (13 December 2012). "Good-Bye 386: Linux to drop support for i386 chips with next major release". ZDNet. CBS Interactive. Retrieved 6 February 2013.
  62. Fingas, Jon (15 December 2012). "Linux to drop i386 support in the 3.8 kernel, make us upgrade our Doom rig". Engadget. AOL. Retrieved 22 March 2015.
  63. Vaughan-Nichols, Steven J. (11 December 2012). "Linux 3.7 arrives, ARM developers rejoice". ZDNet. CBS Interactive. Retrieved 6 February 2013.
  64. Torvalds, Linus (2 September 2013). "Linux 3.11". LKML (Mailing list). Retrieved 3 September 2013.
  65. "Linux 3.11". kernelnewbies.org. 2 September 2013. Retrieved 21 January 2014.
  66. Torvalds, Linus (12 April 2015). "Linux 4.0 released". LKML (Mailing list). Retrieved 12 April 2015.
  67. "The Linux Foundation Releases Linux Development Report". Linux Foundation. 18 February 2015. Archived from the original on 19 July 2016. Retrieved 20 February 2015.
  68. Michael Larabel (23 June 2014). "Linux Kernel At 19.5 Million Lines Of Code, Continues Rising". Phoronix. Retrieved 23 June 2015.
  69. Corbet, Jonathan (3 August 2020). "Some statistics from the 5.8 kernel cycle". LWN - Linux Weekly News. Retrieved 11 August 2020.
  70. "Stack Overflow Developer Survey 2019 - most popular technologies". Stack Overflow. Retrieved 17 March 2020.
  71. "Stack Overflow Developer Survey 2019 - development environments and tools". Stack Overflow. Retrieved 17 March 2020.
  72. "Usage Statistics and Market Share of Operating Systems for Websites, March 2020". w3techs.com. Retrieved 17 March 2020.
  73. "Usage Statistics and Market Share of Unix for Websites, March 2020". w3techs.com. Retrieved 17 March 2020.
  74. "TOP500 Supercomputer Sites: Operating system Family / Linux". Top500.org. Retrieved 5 October 2019.
  75. "Gartner Says Sales of Tablets Will Represent Less Than 10 Percent of All Devices in 2014" (Press release). Egham, UK: Gartner. 15 October 2014. Retrieved 19 October 2014.
  76. Lunden, Ingrid (15 October 2014). "Tablet Sales Growth Plummets In 2014 As Android Smartphones Continue To Soar: Gartner". TechCrunch. AOL. Retrieved 23 October 2014.
  77. "Global PC Shipments Exceed Forecast with Mild Improvement in Consumer Demand, While Apple Moves to #5 Spot, According to IDC" (Press release). Framingham, MA: IDC. 8 October 2014. Archived from the original on 11 October 2014. Retrieved 19 October 2014.
  78. "sched(7) - Linux manual page". man7.org. Retrieved 27 July 2020.
  79. "FAQ: Preemption". kernelnewbies.org. 22 August 2009. Retrieved 7 May 2015.
  80. Jonathan Corbet (24 February 2003). "Driver porting: the preemptible kernel". LWN.net. Retrieved 7 May 2015.
  81. Molnár, Ingo (13 April 2007). "[patch] Modular Scheduler Core and Completely Fair Scheduler [CFS]". LKML (Mailing list). Retrieved 30 March 2020.
  82. "Completely Fair Scheduler | Linux Journal". www.linuxjournal.com. Retrieved 30 March 2020.
  83. "ioctl(2) - Linux manual page". man7.org. Retrieved 11 August 2020.
  84. "aio(7) - Linux manual page". man7.org. Retrieved 11 August 2020.
  85. "io_setup(2) - Linux manual page". man7.org. Retrieved 11 August 2020.
  86. "KVM". www.linux-kvm.org. Retrieved 29 March 2020.
  87. "TechComparison - Linux Virtualization Wiki". virt.kernelnewbies.org. Retrieved 29 March 2020.
  88. "Virtualization_support_through_KVM in Linux_2_6_20 - Linux Kernel Newbies". kernelnewbies.org. Retrieved 29 March 2020.
  89. Coekaerts, Wim. "Linux mainline contains all the Xen code bits for Dom0 and DomU support". blogs.oracle.com. Retrieved 29 March 2020.
  90. "Xen celebrates full Dom0 and DomU support in Linux 3.0 – blog.xen.org". 7 June 2011. Archived from the original on 7 June 2011. Retrieved 29 March 2020.
  91. Wilk, Konrad Rzeszutek (31 January 2014). "Linux 3.14 and PVH". Xen Project. Retrieved 29 March 2020.
  92. "Introduction to Xen Virtualization | Virtualization Guide | openSUSE Leap 15.2". doc.opensuse.org. Retrieved 29 September 2020.
  93. "SELinux Project". GitHub. Retrieved 10 January 2020.
  94. "AppArmor — The Linux Kernel documentation". www.kernel.org. Retrieved 10 January 2020.
  95. Jake Edge (25 November 2008). "Character devices in user space". LWN.net. Retrieved 7 May 2015.
  96. Jonathan Corbet (2 May 2007). "UIO: user-space drivers". LWN.net. Retrieved 7 May 2015.
  97. "stable-api-nonsense - Linux kernel source tree". git.kernel.org. Retrieved 18 April 2020.
  98. Gorman, Mel (15 February 2004). Understanding the Linux Virtual Memory Manager (PDF). Prentice Hall. p. 26. ISBN 0-13-145348-3.
  99. Greg Ungerer. "uClinux mainline Announcement". Archived from the original on 31 October 2007. Retrieved 15 January 2008.
  100. Nguyen, Binh (30 July 2004). "Linux Filesystem Hierarchy: Chapter 1. Linux Filesystem Hierarchy". The Linux Documentation Project. Retrieved 28 November 2012.
  101. "Linux kernel release 5.x — The Linux Kernel documentation". www.kernel.org. Retrieved 4 January 2020.
  102. "README\ABI\Documentation - kernel/git/torvalds/linux.git - Linux kernel source tree". git.kernel.org. Retrieved 18 April 2020.
  103. "syscalls\stable\ABI\Documentation - kernel/git/torvalds/linux.git - Linux kernel source tree". git.kernel.org. Retrieved 18 April 2020.
  104. "stable-api-nonsense - Linux kernel source tree". git.kernel.org. Retrieved 18 April 2020.
  105. "1.Intro.rst - Documentation/process/1.Intro.rst - Linux source code (v5.8) - Bootlin". elixir.bootlin.com. Retrieved 8 August 2020.
  106. "syscalls". man7.
  107. "intro(2) - Linux manual page". man7.org. Retrieved 16 July 2020.
  108. "clone". man7.org. Retrieved 28 January 2020.
  109. "feature_test_macros". man7.org. Retrieved 28 January 2020.
  110. "vdso(7) - Linux manual page". man7.org. Retrieved 2 February 2020.
  111. "futex(2) - Linux manual page". man7.org. Retrieved 2 February 2020.
  112. "syscall(2) - Linux manual page". man7.org. Retrieved 2 February 2020.
  113. "sysfs(5) - Linux manual page". man7.org. Retrieved 6 January 2020.
  114. "Rules on how to access information in sysfs — The Linux Kernel documentation". www.kernel.org. Retrieved 6 January 2020.
  115. "Linux Foundation Referenced Specifications". refspecs.linuxbase.org. Retrieved 3 February 2020.
  116. "LSB Specifications". refspecs.linuxbase.org. Retrieved 3 February 2020.
  117. "Linux Standard Base Desktop Specification, Generic Part". refspecs.linuxbase.org. Retrieved 3 February 2020.
  118. "Normative References". refspecs.linuxfoundation.org. Retrieved 3 February 2020.
  119. "Linux Standard Base Core Specification, Generic Part". refspecs.linuxfoundation.org. Retrieved 3 February 2020.
  120. "System V Application Binary Interface - Edition 4.1" (PDF). www.sco.com.
  121. "Xinuos Inc. | Developers | Gabi | 2003-12-17 | System V Application Binary Interface - DRAFT". www.sco.com. Retrieved 3 February 2020.
  122. "Executable And Linking Format (ELF)". refspecs.linuxbase.org. Retrieved 3 February 2020.
  123. "elf(5) - Linux manual page". man7.org. Retrieved 18 November 2020.
  124. "Linux Standard Base Core Specification for X86-64". refspecs.linuxbase.org. Retrieved 3 February 2020.
  125. "System V Application Binary Interface - DRAFT". refspecs.linuxbase.org. Retrieved 3 February 2020.
  126. Seyfarth, Ray (2012). Introduction to 64 Bit Intel Assembly Language Programming for Linux. p. 170. ISBN 9781478119203.
  127. "Anatomy of a system call, part 1 [LWN.net]". lwn.net. Retrieved 16 July 2020.
  128. "Anatomy of a system call, part 2 [LWN.net]". lwn.net. Retrieved 16 July 2020.
  129. Deucher, Alex (7 October 2014). "AMD's New Unified Open Source Driver". X.Org Foundation. Retrieved 21 January 2015.
  130. "Symbols - Unreliable Guide To Hacking The Linux Kernel — The Linux Kernel documentation". www.kernel.org. Retrieved 8 February 2020.
  131. "Exported symbols and the internal API [LWN.net]". lwn.net. Retrieved 15 March 2020.
  132. "Unexporting kallsyms_lookup_name() [LWN.net]". lwn.net. Retrieved 15 March 2020.
  133. "Trees I: Radix trees [LWN.net]". lwn.net. Retrieved 13 November 2020.
  134. "Trees II: red-black trees [LWN.net]". lwn.net. Retrieved 13 November 2020.
  135. "Unreliable Guide To Hacking The Linux Kernel". www.kernel.org (1st ed.). 2005. Retrieved 15 March 2020.
  136. "Unreliable Guide To Hacking The Linux Kernel — The Linux Kernel documentation". www.kernel.org. Retrieved 15 March 2020.
  137. "Unreliable Guide To Locking — The Linux Kernel documentation". www.kernel.org. Retrieved 15 March 2020.
  138. "SCSI Interfaces Guide — The Linux Kernel documentation". www.kernel.org. Retrieved 11 June 2020.
  139. "libATA Developer's Guide — The Linux Kernel documentation". www.kernel.org. Retrieved 11 June 2020.
  140. "DRM Internals — The Linux Kernel documentation". www.kernel.org. Retrieved 11 June 2020.
  141. "Kernel Mode Setting (KMS) — The Linux Kernel documentation". www.kernel.org. Retrieved 11 June 2020.
  142. "Introduce DMA buffer sharing mechanism [LWN.net]". lwn.net. Retrieved 11 June 2020.
  143. "Sharing CPU and GPU buffers on Linux*". 01.org. 12 May 2016. Retrieved 11 June 2020.
  144. "Buffer Sharing and Synchronization — The Linux Kernel documentation". www.kernel.org. Retrieved 11 June 2020.
  145. "About mac80211". Linux Kernel Organization, Inc. Retrieved 8 June 2014.
  146. "Report on ABI changes in the Linux kernel". Andrey Ponomarenko's ABI laboratory. 17 March 2016.
  147. "[PATCH v3 1/2] fork: add clone3 [LWN.net]". lwn.net. Retrieved 16 July 2020.
  148. "clone(2) - Linux manual page". man7.org. Retrieved 15 July 2020.
  149. "clone3(), fchmodat4(), and fsinfo() [LWN.net]". lwn.net. Retrieved 15 July 2020.
  150. "ld-linux.so(8) - Linux manual page". man7.org. Retrieved 18 November 2020.
  151. "nptl(7) - Linux manual page". man7.org. Retrieved 25 July 2020.
  152. "pthreads(7) - Linux manual page". man7.org. Retrieved 25 July 2020.
  153. "pthread_create(3) - Linux manual page". man7.org. Retrieved 25 July 2020.
  154. "futex(7) - Linux manual page". man7.org. Retrieved 25 July 2020.
  155. "Kernel threads made easy [LWN.net]". lwn.net. Retrieved 15 August 2020.
  156. "execve(2) - Linux manual page". www.man7.org. Retrieved 17 July 2020.
  157. "capabilities(7) - Linux manual page". man7.org. Retrieved 2 August 2020.
  158. Bar, Moshe (1 April 2000). "The Linux Scheduler". Linux Journal. Belltown Media, Inc. Retrieved 14 April 2012.
  159. "IEEE Standard for Information Technology – Portable Operating System Interface, POSIX.1b, Real-time extensions (IEEE Std 1003.1b-1993)".
  160. Larabel, Michael (24 January 2014). "The Linux 3.14 Kernel Already Has Many Exciting Features". Phoronix. Retrieved 3 February 2014.
  161. "Linux kernel 3.14, Section 1.1. Deadline scheduling class for better real-time scheduling". kernelnewbies.org. 30 March 2014. Retrieved 2 April 2014.
  162. Love, Robert (2010). "4". Linux Kernel Development (3rd ed.). Addison Wesley. pp. 62–63. ISBN 9780672329463.
  163. "Lowering Latency in Linux: Introducing a Preemptible Kernel | Linux Journal". www.linuxjournal.com. Retrieved 17 August 2020.
  164. McKenney, Paul (10 August 2005). "A realtime preemption overview". LWN.net. Retrieved 5 February 2012.
  165. "OSADL Project: Realtime Linux". OSADL. Retrieved 5 February 2012.
  166. Love, Robert (2010). Linux Kernel Development. Addison Wesley. p. 20. ISBN 9780672329463.
  167. "The Linux Storage Stack Diagram". www.thomas-krenn.com. Retrieved 19 March 2020.
  168. Torvalds, Linus (January 1999). "The Linux Edge". Open Sources: Voices from the Open Source Revolution. O'Reilly. ISBN 1-56592-582-3. Retrieved 13 October 2013.
  169. "Porting Linux to the DEC Alpha: The Kernel and Shell".
  170. "Linux on Alpha: A Strategic Choice".
  171. "Avalon Cluster | TOP500 Supercomputer Sites". www.top500.org. Retrieved 5 October 2019.
  172. Wang, David (6 May 2010). "Android Now Running On iPhone 3G". TechHive. IDG. Retrieved 11 July 2010.
  173. "LKDDb". LKDDb Project. Retrieved 26 January 2021.
  174. "Linux Hardware". Linux Hardware Project. Retrieved 26 January 2021.
  175. "Linux kernel 4.0, Section 1.2. Live patching". kernelnewbies.org. 26 April 2015. Retrieved 27 April 2015.
  176. Jonathan Corbet (25 February 2015). "A rough patch for live patching". LWN.net. Retrieved 27 April 2015.
  177. "kernel/git/torvalds/linux.git: Pull live patching infrastructure from Jiri Kosina (Linux kernel source tree)". kernel.org. 11 February 2015. Retrieved 27 April 2015.
  178. Mookhey, K. K.; Burghate, Nilesh (1 July 2005). Linux: Security, Audit and Control Features. USA: ISACA. p. 14. ISBN 1-893209-78-4. Retrieved 31 December 2010.
  179. Hatch, Brian (15 July 2008). Hacking Exposed Linux: Linux Security Secrets and Solutions. McGraw-Hill Osborne Media. p. 524. ISBN 978-0-07-226257-5. Retrieved 31 December 2010.
  180. Jaeger, Trent (7 October 2008). Operating System Security. Morgan and Claypool Publishers. p. 122. ISBN 978-1-59829-212-1. Retrieved 31 December 2010.
  181. "CAP_PERFMON — and new capabilities in general [LWN.net]". lwn.net. Retrieved 2 August 2020.
  182. "Linux Security Module Usage — The Linux Kernel documentation". www.kernel.org. Retrieved 10 January 2020.
  183. "National Security Agency | Central Security Service > What We Do > Research > SE Linux > SE Linux FAQs". www.nsa.gov. Retrieved 10 January 2020.
  184. "Seccomp BPF (SECure COMPuting with filters) — The Linux Kernel documentation". www.kernel.org. Retrieved 10 January 2020.
  185. Andrews, Jeremy (16 July 2008). "Security Bugs and Full Disclosure". KernelTrap. Archived from the original on 19 July 2008. Retrieved 31 December 2010.
  186. Spengler, Brad (16 July 2008). "Linux's unofficial security-through-coverup policy". Full Disclosure (Mailing list). Retrieved 31 December 2010.
  187. Foundation, The Linux (25 October 2017). "2017 State of Linux Kernel Development". The Linux Foundation. Retrieved 27 May 2020.
  188. "git-clone(1) - Linux manual page". man7.org. Retrieved 16 August 2020.
  189. "git-pull(1) - Linux manual page". man7.org. Retrieved 16 August 2020.
  190. Robert Love (2010). Linux Kernel Development: Linux Kernel Development. Pearson Education. p. 11. ISBN 9780768696790.
  191. Robert Love (2010). Linux Kernel Development: Linux Kernel Development. Pearson Education. p. 12. ISBN 9780768696790.
  192. "How the development process works". Retrieved 4 February 2018.
  193. Robert Love (2010). Linux Kernel Development: Linux Kernel Development. Pearson Education. p. 13. ISBN 9780768696790.
  194. "HOWTO do Linux kernel development — The Linux Kernel documentation". www.kernel.org. Retrieved 4 January 2020.
  195. "Linux kernel coding style — The Linux Kernel documentation". www.kernel.org. Retrieved 4 January 2020.
  196. Kubbilun, Ingo A. (2 June 2004). "Linux kernel patch for Intel Compiler" (in German). Pyrillion.org. Archived from the original on 22 July 2011. Retrieved 12 November 2010.
  197. timothy (26 February 2009). "High Performance Linux Kernel Project LinuxDNA". Slashdot Linux. Dice Holdings. Retrieved 30 October 2010.
  198. Ryan, Justin (25 February 2009). "LinuxDNA Supercharges Linux with the Intel C/C++ Compiler". Linux Journal. Belltown Media, Inc. Retrieved 30 October 2010.
  199. Lelbach, Bryce (25 October 2010). "Clang builds a working Linux Kernel (Boots to RL5 with SMP, networking and X, self hosts)". cfe-dev (Mailing list). Archived from the original on 7 September 2015.
  200. Larabel, Michael (12 April 2014). "Linux 3.15 Can Almost Be Compiled Under LLVM's Clang". Phoronix. Retrieved 10 June 2014.
  201. Larabel, Michael. "Patch By Patch, LLVM Clang Gets Better At Building The Linux Kernel". Phoronix. Retrieved 20 November 2014.
  202. Edge, Jake (7 May 2013). "LFCS: The LLVMLinux project". LWN.net. Retrieved 3 March 2015.
  203. Möller, Jan-Simon (2 February 2014). "LLVMLinux: The Linux Kernel with Dragon Wings" (PDF). LLVM Project. Retrieved 3 March 2015.
  204. Desaulniers, Nick; Hackmann, Greg; Hines, Stephen (18 October 2017). "2017 LLVM Developers' Meeting: Compiling Android userspace and Linux kernel with LLVM". YouTube.
  205. Hackmann, Greg (2 February 2017). "marlin-nougat-mr1-clang Patch Series". Retrieved 6 December 2020.
  206. Kaehlcke, Matthias (22 October 2018). "cros-kernel2: Make clang the default compiler for kernel builds". Retrieved 6 December 2020.
  207. Larabel, Michael (4 February 2019). "Using LLVM Clang To Compile The Linux Kernel Is Heating Up Again Thanks To Google". Phoronix. Retrieved 6 December 2020.
  208. Desaulniers, Nick (10 December 2019). "vts: kernel: enforce vts_kernel_toolchain for all TARGET_ARCH for R". Retrieved 6 December 2020.
  209. Desaulniers, Nick (19 November 2020). "Re: violating function pointer signature". LKML. Retrieved 6 December 2020.
  210. Love, Robert (2010). Linux kernel development (3rd ed.). Addison-Wesley. p. 364. ISBN 978-0-672-32946-3. OCLC 268788260.
  211. Bradford, John (8 March 2003). "Re: what's an OOPS". LKML (Mailing list). Retrieved 30 October 2010.
  212. Love, Robert (2010). Linux kernel development. Addison Wesley. p. 371. ISBN 9780672329463. OCLC 268788260.
  213. "syslog(2) - Linux manual page". man7.org. Retrieved 15 August 2020.
  214. "kmsg: export printk records to the /dev/kmsg interface [LWN.net]". lwn.net. Retrieved 16 August 2020.
  215. "systemd". www.freedesktop.org. Retrieved 16 August 2020.
  216. "systemd-journald(8) - Linux manual page". man7.org. Retrieved 15 August 2020.
  217. "Debugging the kernel using Ftrace - part 1 [LWN.net]". lwn.net. Retrieved 15 September 2020.
  218. "Debugging the kernel using Ftrace - part 2 [LWN.net]". lwn.net. Retrieved 15 September 2020.
  219. "ftrace - Function Tracer — The Linux Kernel documentation". www.kernel.org. Retrieved 15 September 2020.
  220. "Boot-time tracing — The Linux Kernel documentation". www.kernel.org. Retrieved 19 September 2020.
  221. "Kernel Probes (Kprobes) — The Linux Kernel documentation". www.kernel.org. Retrieved 6 October 2020.
  222. "Uprobe-tracer: Uprobe-based Event Tracing — The Linux Kernel documentation". www.kernel.org. Retrieved 6 October 2020.
  223. "Using kgdb, kdb and the kernel debugger internals". mirrors.edge.kernel.org. Retrieved 3 November 2020.
  224. Gene Sally (2010). Pro Linux Embedded Systems. Apress. p. 252. ISBN 9781430272267.
  225. "Code of Conflict". Retrieved 4 February 2018.
  226. Sharwood, Simon (6 October 2015). "Linux kernel dev who asked Linus Torvalds to stop verbal abuse quits over verbal abuse". The Register.
  227. Edge, Jake (31 January 2018). "Too many lords, not enough stewards". LWN.net. Retrieved 4 February 2018.
  228. Corbet, Jonathan (6 November 2017). "Bash the kernel maintainers". LWN.net. Retrieved 4 February 2018.
  229. "The state of preempt-rt". linuxplumbersconf.org. Archived from the original on 15 October 2016. Retrieved 14 June 2016.
  230. Meyer, David (3 February 2010). "Linux developer explains Android kernel code removal". ZDNet. CBS Interactive. Retrieved 3 February 2010.
  231. "Chapter 03: maemo Platform Overview". maemo Technology Overview. Nokia. 2008. Archived from the original on 16 June 2008. Retrieved 9 April 2010.
  232. Kroah-Hartman, Greg (2 February 2010). "Android and the Linux kernel community". Retrieved 3 February 2010.
  233. Roger Ye (2017). Android System Programming. Packt Publishing. p. 14. ISBN 9781787120389.
  234. Torvalds, Linus (19 September 2001). "The Origins of Linux—Linus Torvalds". YouTube. Retrieved 6 December 2020.
  235. "Why I quit: kernel developer Con Kolivas". APC Magazine. ACP Magazines. 24 July 2007. Archived from the original on 7 July 2011. Retrieved 15 August 2011.
  236. Corbet, Jonathan (25 July 2007). "Re: -mm merge plans for 2.6.23". LWN.net. Retrieved 10 February 2018.
  237. Cox, Alan (28 July 2009). "Re: [PATCH] kdesu broken". Retrieved 10 February 2018.
  238. Rodrigues, Goldwyn (22 January 2011). "A tale of two SCSI targets". Retrieved 14 February 2018.
  239. Steinmetz, Andreas (17 January 2013). "LIO - the broken iSCSI target implementation". Retrieved 14 February 2018.
  240. Paul, Ryan (19 June 2012). "Linus Torvalds says "f–k you" to NVIDIA". Retrieved 14 February 2018.
  241. John Gold (3 April 2014). "Linus Torvalds suspends key Linux developer: Kernel panic as Systemd dev pokes the bear". Retrieved 24 March 2019.
  242. Poettering, Lennart (6 October 2014). "On the sickness of the Linux Kernel Community". Google+. Retrieved 10 February 2018.
  243. Brodkin, Jon (6 March 2015). "VMware alleged to have violated Linux's open source license for years". Ars Technica. Retrieved 14 February 2018.
  244. McCarthy, Kieren (26 August 2016). "Having offended everyone else in the world, Linus Torvalds calls own lawyers a 'nasty festering disease'". The Register. Retrieved 14 February 2018.
  245. Corbet, Jonathan (10 September 2007). "KS2007: Developer relations and development process". LWN.net. Retrieved 11 February 2018.
  246. Brodkin, Jon (16 July 2013). "Linus Torvalds defends his right to shame Linux kernel developers". ARS Technica. Retrieved 11 February 2018.
  247. Corbet, Jonathan (9 March 2015). "The kernel's code of conflict". LWN.net. Retrieved 11 February 2018.
  248. Corbet, Jonathan (18 September 2018). "Code, conflict, and conduct". LWN.net.
  249. Cohen, Noam (19 September 2018). "After Years of Abusive E-mails, the Creator of Linux Steps Aside". The New Yorker.
  250. Larabel, Michael. "Dropping Profanity In Kernel Code Comments: Linux Gets "Hugs"". Phoronix. Retrieved 15 June 2019.
  251. "Linux Evolution" (PDF). 26 March 2008.
  252. "Perpetual Development: A Model of the Linux Kernel Life Cycle" (PDF). 25 October 2011.
  253. Kroah-Hartman, Greg (12 February 2008). "Re: Announce: Linux-next (Or Andrew's dream :-))". Linux Kernel Mailing List (Mailing list). Retrieved 30 January 2017.
  254. Wheeler, David A. "Linux Kernel 2.6: It's Worth More!".
  255. "Economic impact of FLOSS on innovation and competitiveness of the EU ICT sector" (PDF) (Table 3 on page 50).
  256. "Estimating Total Development Cost Of a Linux Distribution" (PDF) (Table on page 6). Archived from the original (PDF) on 11 July 2010.
  257. "The Billion Dollar Kernel". Linux.slashdot.org. 24 February 2010. Retrieved 12 November 2010.
  258. Wheeler, David. "The Linux Kernel: It's Worth More!". Retrieved 17 September 2012.
  259. "Linux MAINTAINERS file". Archived from the original on 12 January 2013.
  260. Torvalds, Linus (16 September 2018). "Linux 4.19-rc4 released, an apology, and a maintainership note". LKML. Retrieved 23 September 2018.
  261. Alexandru Vaduva, Alex Gonzalez & Chris Simmonds (2016). Linux: Embedded Development. Packt Publishing. p. 663. ISBN 9781787124455.
  262. "The Linux Kernel Archives". Retrieved 13 November 2019.
  263. Yamagata, Hiroo (3 August 1997). "The Pragmatist of Free Software". HotWired. Archived from the original on 10 February 2007. Retrieved 21 February 2007.
  264. "GPL-v2". gnu.org.
  265. Corbet, Jonathan (31 January 2006). "GPLv3 and the kernel". LWN.net. Retrieved 21 February 2007.
  266. Torvalds, Linus (8 September 2000). "Linux-2.4.0-test8". LKML (Mailing list). Retrieved 21 February 2007.
  267. "gnu.org". www.gnu.org. Retrieved 18 October 2017.
  268. Cox, Alan (20 January 2006). "Re: GPL V3 and Linux". LKML (Mailing list). Retrieved 21 February 2007.
  269. Shankland, Stephen (25 September 2006). "Top Linux programmers pan GPL 3". News.com. CNET. Retrieved 21 February 2007.
  270. James E.J. Bottomley, Mauro Carvalho Chehab, Thomas Gleixner, Christoph Hellwig, Dave Jones, Greg Kroah-Hartman, Tony Luck, Andrew Morton, Trond Myklebust, David Woodhouse (15 September 2006). "Kernel developers' position on GPLv3: The Dangers and Problems with GPLv3". LWN.net. Retrieved 11 March 2015.CS1 maint: uses authors parameter (link)
  271. Petreley, Nicholas (27 September 2006). "A fight against evil or a fight for attention?". linuxjournal.com. Retrieved 11 March 2015.
  272. "Linus Torvalds says GPL v3 violates everything that GPLv2 stood for". Debconf 2014. 2014. Retrieved 21 March 2018.
  273. Clark, Rob; Semwal, Sumit (1 November 2012). "DMA Buffer Sharing Framework: An Introduction" (PDF). Embedded Linux Conference. Retrieved 2 August 2014.
  274. Cox, Alan (10 October 2012). "[PATCH] dma-buf: Use EXPORT_SYMBOL". Direct Rendering Infrastructure (Mailing list). Retrieved 3 September 2013.
  275. Torvalds, Linus (10 December 2003). "RE: Linux GPL and binary module exception clause?". LKML (Mailing list). Retrieved 31 December 2010.
  276. Torvalds, Linus (3 December 2003). "Re: Linux GPL and binary module exception clause?". LKML (Mailing list). Retrieved 12 November 2010.
  277. "Linux Firmware API — The Linux Kernel documentation". www.kernel.org. Retrieved 13 January 2020.
  278. "Tainted kernels — The Linux Kernel documentation". www.kernel.org. Retrieved 13 January 2020.
  279. "Built-in firmware — The Linux Kernel documentation". www.kernel.org. Retrieved 10 June 2020.
  280. "Linux TM registration in the US". uspto.gov.
  281. "Linux TM registration in the EU". euipo.europa.eu. Retrieved 28 November 2020.
  282. Hughes, Phil (1 August 1997). "Linux Trademark Dispute". Linux Journal. Belltown Media, Inc. Retrieved 8 December 2010.
  283. Hughes, Phil (1 March 1997). "Action Taken on Linux Trademark". Linux Journal. Belltown Media, Inc. Retrieved 8 December 2010.
  284. Gisselberg, Tonya (2010). "The Trademark History of Linux, the Operating System" (PDF). Gisselberg Law Firm, Inc. Archived from the original (PDF) on 11 July 2011. Retrieved 8 December 2010.

Further reading

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.