Size: 1088
Comment:
|
Size: 1340
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
A comprehensible changelog of the Linux kernel, this page shows a summary of the important changes being added in each Linux kernel release - support for new devices, features, filesystems, and subsystems as well as important internal changes. While this text is aimed to be readable (unlike the full changelog), its primary audience is those who know a fair amount about how a kernel operates. Other places to get news about the Linux kernel are [http://lwn.net/Kernel/ LWN kernel status], [http://lwn.net/Articles/driver-porting/ LWN driver porting guide], [http://lwn.net/Articles/2.6-kernel-api/ LWN list of API changes in 2.6], or [http://www.lkml.org www.lkml.org]. If you're going to add something here look first at LinuxChangesRules! | Linux 2.6.23; not yet released |
Line 3: | Line 3: |
'''Older releases''' * Stable release: [http://wiki.kernelnewbies.org/Linux_2_6_23 Linux 2.6.23], previous stable release: [http://wiki.kernelnewbies.org/Linux_2_6_22 Linux 2.6.22], next release: [http://wiki.kernelnewbies.org/Linux_2_6_24 2.6.24] (still not available); see Linux26Changes for other versions. |
[[TableOfContents()]] |
Line 6: | Line 5: |
[[Include(Linux_2_6_23)]] | == Short overview (for news sites, etc) == 2.6.23 includes the fallocate() syscall == Important things (AKA: ''the cool stuff'') == === fallocate() === 2.6.23 adds a new system call fallocate() which allows applications to preallocate space for a file (http://lwn.net/Articles/226710/). Each file system implementation that wants to use this feature will need to support an inode operation called fallocate. Applications can use this feature to avoid fragmentation to certain level and thus get faster access speed. With preallocation, applications also get a guarantee of space for particular file(s) - even if later the system becomes full [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=97ac73506c0ba93f30239bb57b4cfc5d73e68a62 (commit)] == Miscellaneous userland ABI changes == === open() O_CLOEXEC flag === 2.6.23 adds a new O_CLOEXEC flag (http://lwn.net/Articles/236843/). This flag makes it possible to avoid race conditions in multithreaded applications that do the following 1. Thread A: fd=open() 1. Thread B: fork + exec 1. Thread A: fcntl(fd,F_SETFD,FD_CLOEXEC) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f23513e8d96cf5e6cf8d2ff0cb5dd6bbc33995e4 (commit)] |
Linux 2.6.23; not yet released
Short overview (for news sites, etc)
2.6.23 includes the fallocate() syscall
Important things (AKA: ''the cool stuff'')
fallocate()
2.6.23 adds a new system call fallocate() which allows applications to preallocate space for a file (http://lwn.net/Articles/226710/). Each file system implementation that wants to use this feature will need to support an inode operation called fallocate.
Applications can use this feature to avoid fragmentation to certain level and thus get faster access speed. With preallocation, applications also get a guarantee of space for particular file(s) - even if later the system becomes full [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=97ac73506c0ba93f30239bb57b4cfc5d73e68a62 (commit)]
Miscellaneous userland ABI changes
open() O_CLOEXEC flag
2.6.23 adds a new O_CLOEXEC flag (http://lwn.net/Articles/236843/). This flag makes it possible to avoid race conditions in multithreaded applications that do the following
- Thread A: fd=open()
- Thread B: fork + exec
- Thread A: fcntl(fd,F_SETFD,FD_CLOEXEC)