Product SiteDocumentation Site

6.9. Linux Kernel

This section covers changes and important information regarding the 2.6.29 based kernel in Fedora 11.

6.9.1. Improved Performance and Reduced Power with relatime

The relatime option is now enabled by default in Fedora 11. It improves filesystem performance and reduces power consumption.
The POSIX standard requires operating systems to keep track of the last time each file was accessed by an application or the user, and to store this timestamp as part of the filesystem data. This timestamp, called atime, is used in finding out which files are never used (to clean up the /tmp directory for example) or if a file has been looked at after it was last changed.
A significant downside to atime is that every time a file is accessed, the kernel has to write a new timestamp to the disk, at least after a few seconds of activity. These disk writes keep the disk and the link to the disk busy, which costs both performance and power.
Because some programs use atime, disabling by default is not practical. The Linux kernel has a feature called relatime, which is an effective compromise between having some of the information that atime provides, without having the disk time updated as regularly. It works by updating the atime field on disk only if the file hasn't been accessed since the last time it was accessed (to provide the new email detection capability) or when the last access was more than 1 day ago (to help programs and users clean up unused files in the /tmp directory). An improved version of relatime has been merged upstream by Fedora developers in the 2.6.30 kernel and backported to the Fedora 11 kernel.

6.9.2. 버전

Fedora에는 개선 사항, 버그 수정 또는 추가 기능을 위해 커널에 추가 패치가 포함되어 있을 수 있습니다. 이러한 이유로, Fedora 커널은 kernel.org 웹사이트에서의 vanilla kernel라고 불리는 것과 완전 동일하지 않을 수 도 있습니다:
패치 목록을 얻으려면 소스 RPM 패키지를 다운로드하여 다음과 같은 명령을 실행합니다:
rpm -qpl kernel-<version>.src.rpm

6.9.3. Changelog

패키지의 로그 변경 사항을 검색하려면 다음 명령을 실행합니다:
rpm -q --changelog kernel-<version>
If you need a user friendly version of the changelog, refer to http://wiki.kernelnewbies.org/LinuxChanges. A short and full diff of the kernel is available from http://kernel.org/git. The Fedora version kernel is based on the Linus tree.
Customizations made for the Fedora version are available from http://cvs.fedoraproject.org.

6.9.4. Preparing for Kernel Development

Fedora 11 does not include the kernel-source package provided by older versions since only the kernel-devel package is required now to build external modules.

사용자 설정 커널 작성

For information on kernel development and working with custom kernels, refer to http://fedoraproject.org/wiki/Building_a_custom_kernel.

6.9.5. Reporting Bugs

Refer to http://kernel.org/pub/linux/docs/lkml/reporting-bugs.html for information on reporting bugs in the Linux kernel. You may also use http://bugzilla.redhat.com for reporting bugs that are specific to Fedora.