Search     or:     and:
 LINUX 
 Language 
 Kernel 
 Package 
 Book 
 Test 
 OS 
 Forum 
 iakovlev.org 
 Kernels
 Boot 
 Memory 
 File system
 0.01
 1.0 
 2.0 
 2.4 
 2.6 
 3.x 
 4.x 
 5.x 
 6.x 
 Интервью 
 Kernel
 HOW-TO 1
 Ptrace
 Kernel-Rebuild-HOWTO
 Runlevel
 Linux daemons
 FAQ
NEWS
Последние статьи :
  Тренажёр 16.01   
  Эльбрус 05.12   
  Алгоритмы 12.04   
  Rust 07.11   
  Go 25.12   
  EXT4 10.11   
  FS benchmark 15.09   
  Сетунь 23.07   
  Trees 25.06   
  Apache 03.02   
 
TOP 20
 MINIX...3057 
 Solaris...2933 
 LD...2906 
 Linux Kernel 2.6...2486 
 William Gropp...2182 
 Rodriguez 6...2016 
 C++ Templates 3...1946 
 Trees...1938 
 Kamran Husain...1866 
 Secure Programming for Li...1792 
 Максвелл 5...1711 
 DevFS...1695 
 Part 3...1684 
 Stein-MacEachern-> Час...1632 
 Go Web ...1627 
 Ethreal 4...1619 
 Стивенс 9...1607 
 Arrays...1607 
 Максвелл 1...1593 
 FAQ...1539 
 
  01.01.2024 : 3621733 посещений 

iakovlev.org

Обзор

Этот релиз включает поддержку : user space priority inheritance (http://lwn.net/Articles/178253/), средство отладки "lock validator" (http://lwn.net/Articles/185666/), новый шедулер для многоядерных систем, SMPnice (http://lwn.net/Articles/186438/), улучшенный драйвер SATA (http://lwn.net/Articles/183734/), обновлен swap-механизм (swapless page migration) (http://lwn.net/Articles/160201/), per-zone VM counters, per-task delay accounting, a new per-packet access control for SELinux called 'secmark' (http://james-morris.livejournal.com/11010.html), randomized i386 vDSO, несколько новых драйверов, дополнительная поддержка для уже существующих, много bug fixes и других улучшений.

Наиболее важные изменения

PI - priority inheritance - имеет отношение к т.н. run-time-приложениям. Без этой фичи , если приоритет блокирован какой-то задачей, несмотря на все правила соблюдения синтаксиса (критические секции включают минимальное число команд), ядро не может гарантировать выполнение задачи с более высоким приоритетом. User-space PI решает эту задачу. Детали: LWN article, патч для glibc: here, документация: (commit); code: (commit), (commit), (commit)

Lockdep, a kernel lock validator

Linux's locking style is known for being simple compared with other Unix SMP-friendly derivatives. Still, locking is a necessary evil that is hard to get right for most normal programmers (most of us). Locking bugs can be very difficult to find, especially in drivers, which don't get the solid review that the core kernel has. The kernel lock validator is a debugging tool that tries to makes such things easier, it's (LWN article) "a complex infrastructure to the kernel which can then be used to prove that none of the locking patterns observed in a running system could ever deadlock the kernel". If you want to help to make Linux more stable, give it a run and report the backtraces printed on dmesg at linux-kernel@vger.kernel.org or http://bugzilla.kernel.org. Design documentation: (commit), code: (commit)

Process scheduler

New power saving policy

In machines with several multi core/smt "packages" (which will become increasingly common in the future), the power consumption can be improved by letting some packages idle while others do all the work, instead of spreading the tasks over all CPUs, so a optional power saving policy has been developed to make this possible. When this power savings policy is enabled - set to 1 the sysfs entry 'sched_mc_power_savings' or 'sched_smt_power_savings' placed under /sys/devices/system/cpu/cpuX/ when enabled CONFIG_SCHED_MC / CONFIG_SCHED_SMT - and under light load conditions, the scheduler will minimize the physical packages/cpu cores carrying the load and thus conserving power, but impacting the performance depending on the workload characteristics (when there's lot of work to do all CPUs will be used, to completely disable individual CPUs use the already available CPU hot plugging feature by writing 0 to the "online" file in that sysfs directory). For more details on the effect of this policy read the "Chip Multi Processing(CMP) aware Linux Kernel Scheduler" talk from the OLS 2005 (page 201 and onwards) (commit)

SMPnice

(A.K.A. 'take priority into account when balancing processes between CPUs'): One of the design principles of the new 2.6 scheduler (aka, "Ingo's O(1) scheduler") was the idea of having a separate run queue of processes for each CPU present on the system, instead of a single run queue for all CPUs, for scalability reasons. Periodically, the scheduler would balance the per-cpu run queues to distribute all the jobs and keep all the CPUs busy. However, priority levels were not taken into account at the time of doing this balance and it was possible recreate scenarios where the kernel was being unfair, when mixing processes with different priorities. "SMPnice" is a implementation of a solution for this problem (LWN article), (commit)

Memory management

Swapless page migration

Being able to migrate physical pages between nodes in NUMA-like systems - to improve the locality of reference - was introduced in Linux 2.6.16, but it didn't use a very clean method: pages were swapped out in purpose, and then the next time those pages would be faulted, they'd be swapped in to the node where you wanted to move those pages instead of the old one. This trick was used but now the feature has been completed with "direct page migration": Now pages are moved directly from one node to another, without using swap. This feature includes a new system call which allows to move individual pages of a process from one node to another: long move_pages(pid, number_of_pages_to_move, addresses_of_pages[], nodes[] or NULL, status[],lags) - the swap-based migration had already added a migrate_pages() syscall and a MPOL_MF_MOVE option to the set_mempolicy() syscall). For full details, read this (LWN article). Code: (commit), (commit), (commit), (commit), (commit), (commit)

Per-zone VM counters

Zone based VM statistics are necessary to be able to determine what the state of memory in a zone is. The counters that we currently have for the VM are split per processor, but the processor has not much to do with the zone these pages belong to: we cannot tell f.e. how many pages on a particular node are dirty - if we knew then we could put measures into the VM to balance the use of memory between different zones and different nodes in a NUMA system. It would allow the development of new NUMA balancing algorithms that may be able to improve the decision making in the scheduler of when to move a process to another node - and hopefully will also enable automatic page migration through a user space program that can analyze the memory load distribution and then rebalance memory use in order to increase performance. This feature allows to have such info. The zone_reclaim_interval sysctl vanishes (since VM stats can now determine when it is worth to do local reclaim), and there're accurate counters in /sys/devices/system/node/node*/meminfo (current counters are not very accurate). Other detailed VM counters are available in more /proc and /sys status files (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit)

Per-task delay accounting

This feature collects information on time spent by a task waiting for system resources like cpu, synchronous block I/O completion and swapping in pages. Until now, it was only possible to know that a process was not runnning, but it was not possible to obtain detailed information in what was making the process spend the time. The data is exported throught netlink and /proc/<tgid>stats (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit)

Big libata (SATA) update

(LWN article) Mainstream libata has been missing some features like NCQ and hot plug. The code had been written a while ago (more than a year ago in the case of NCQ) but only now it has been considered stable. The features included in this update are: a revamped error handling across all the libata code, which makes libata more robust to errors and failures, and makes easier to debug problems (commit); NCQ (Native Command Queuing) which improves the performance greatly for many workloads) (commit), hotplug (commit), warmplug (commit), and bootplug - boot probing via hotplug path - support (commit), interrupt-driven PIO mode (instead of the inefficient poll method), (commit), add MCP61 support (commit)

Change the default IO scheduler to 'CFQ'

2.6 features modular I/O schedulers: There're several I/O schedulers with different performance properties (that you can change at runtime with /sys/block/hda/queue/scheduler). The Anticipatory Scheduler (AS) has been the default one since then, but the CFQ (Complete Fair Queuing) scheduler has been gaining adoption since then, to the point that it's the default I/O scheduler for RHEL 4, Suse, and other distros. One of the coolest things about CFQ is that it features (since 2.6.13) "io priorities": That means you can set the "I/O" priority of a process so you can avoid that a process that does too much I/O (daily updatedb) starves the rest of the system, or give extra priority to a process that shouldn't be starved by other processes, by using the "ionice" tool included in schedutils (1.5.0 and onwards). Now CFQ is the default scheduler (commit) (after some performance tweaks that should improve the performancein many workloads) (commit). If you want to continue using the AS scheduler, you can change it at runtime in /sys/block/hda/queue/scheduler, or use the "elevator=as" boot option.

Secmark: Add security markings to packets via iptables

James Morris article SELinux already has methods to "mark" network packets, but they're not as expressive or powerful as the controls provided by Netfilter/iptables. So Netfilter/iptables has been leveraged for packet selection and labeling, so that now SELinux can have more powerful and expressive network controls for adding security markings to packets. This also allows for increased security, as the policy is more effective, allowing access to the full range of iptables selectors and support mechanisms. The feature includes a SECMARK target allowing the admin to apply security marks to packets via both iptables and ip6tables, a CONNSECMARK target used to specify rules for copying security marks from packets to connections and for copying security marks back from connections to packets, and secmark support to conntrack. Examples of policies and rulesets, and patches for libselinux can be found here. (commit), (commit), (commit), (commit), (commit), (commit), (commit)

Add binding/unbinding support for the VT console

This feature adds the ability to detach and attach the framebuffer console to and from the vt layer. With this change, it is possible to detach fbcon from the console layer. If it is detached, it will reattach the boot console driver (which is permanently loaded) back to the console layer so the system can continue to work. Similarly, fbcon can be reattached to the console layer without having to reload the module. Attaching and detaching fbcon is done via sysfs attributes. A class device entry for fbcon is created in /sys/class/graphics. The two attributes that controls this feature are detach and attach. Two other attributes that are piggybacked under /sys/class/graphics/fb[n] that are fbcon-specific, 'con_rotate' and 'con_rotate_all' are moved to fbcon. They are renamed as 'rotate' and 'rotate_all' respectively. Overall, this feature is a great help for developers working in the framebuffer or console layer as there is not need to continually reboot the kernel for every small change. It is also useful for regular users who wants to choose between a graphical console or a text console without having to reboot (commit), (commit), (commit), (commit), (commit), (commit)

New drivers

Here are some important drivers that have been added to the Linux tree - note that it says 'drivers', only new important drivers are listed today. Other small drivers are listed below; the already available drivers also add support for new devices and some are listed below but support for new devices is added so fast that it's impossible to keep track of all of them.

  • ZyDAS ZD1211 USB-WLAN driver: there are 60+ USB wifi adapters available on the market based on the ZyDAS ZD1211 chip, based on ZyDAS's own GPL driver, additionally, the firmware is redistributable and they have provided device specs. Kudos to ZyDAS. If you support "open hardware", you know what to do the next time you need a wifi adapter ;-) (commit)

  • Add new ioatdma driver for the Intel(R) I/OAT DMA engine (LWN article) (commit), (commit), (commit), (commit), (commit), (commit), (commit)

  • imacfb driver for Intel-based Macintosh machines (commit)

  • hptiop SCSI driver for Highpoint RocketRAID 3220/3320 series 8 channel PCI-X SATA RAID Host Adapters (commit)

  • Myri-10G Ethernet driver (commit)

  • Echoaudio sound drivers (darla20, darla24, echo3g, gina20, gina24, indigo, indigodj, indigoio, layla20, lala24, mia, mona) (commit)

  • smc911x driver which supports the SMSC LAN911x line of ethernet chips (commit)

  • New driver, to control the brightness of an Apple Cinema Display over USB (commit)

  • ACPI dock driver (commit)

  • Freescale QE UCC gigabit ethernet driver (commit)

Generic IRQ layer

Yet More Generalization of the IRQ handling layer. Not all architectures were using the current IRQ layer (specially ARM) and the current one had some shortcomings. From this LWN article: These patches attempt to take lessons learned about optimal interrupt handling on all architectures, mix in the quirks found in the fifty (yes, fifty) ARM sub architectures, and create a new IRQ subsystem which is truly generic, and more powerful as well. Design documentation: (commit); code: (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit)

Generic core time subsystem

The time work is done in a architecture-dependent way. This work tries to provide a core time subsystems that can be used for all architectures, avoiding lots of code duplication. Detailed analysis in this LWN article; (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit)

Randomize the i386 vDSO

Move the i386 VDSO down into a vma and thus randomize it. Besides the security implications (attackers cannot use the predictable high-mapped VDSO page as syscall trampoline anymore) this feature also helps debuggers, and it's good for hypervisors (Xen, VMWare) too. There's a new CONFIG_COMPAT_VDSO option, which provides support for older glibcs that still rely on a prelinked high-mapped VDSO. Newer distributions (using glibc 2.3.3 or later) can turn this backwards-compatibility option off (recommended, for security reasons, as the features makes harder certain types of attacks). There is a new vdso=[0|1] boot option as well, and a runtime /proc/sys/vm/vdso_enabled sysctl switch, that allows the VDSO to be turned on/off (commit)

Various core stuff

  • Driver model, sysfs, etc: Add a "enable" sysfs attribute to the pci devices to allow userspace to enable and disable devices without having to do foul direct access (commit), add a sysfs file to determine if a kexec kernel is loaded (commit), add new uevent for dock so that user space can be notified of dock and undock events (commit), add SYS_HYPERVISOR config option and a /sys/hypervisor subsystem when set by architecture dependent hypervisors (e.g. s390 or Xen) (commit), add sysfs ISA bus, needed for proper support of ISA sound cards (commit), bus Parity Status sysfs interface, which adds the 'broken_parity_status' sysfs attribute file to a PCI device (commit), (commit)

  • Finally remove devfs from the kernel tree (commit)

  • Allow the ability to have height 0 radix trees. On 64-bit machines this causes nearly 600 bytes to be used for every <= 4K file in pagecache (huge savings) and pagecache lookup, insertion, and removal speed for small files will also be improved (commit)

  • Implement AT_SYMLINK_FOLLOW flag for linkat (commit)

  • 64bit resources (LWN article), (commit)

  • Support for panic at OOM - panic_on_oom sysctl under sys.vm. If set to 1, the kernel will panic on OOM (commit)

  • Add: page_mkwrite() new VMA operation to notify a filesystem or other driver about the MMU generating a fault because userspace attempted to write to a page mapped through a read-only PTE (commit), implement kasprintf, a kernel version of asprintf (commit), strstrip() API for removing leading and trailing whitespace from a string (commit)

  • inotify: Introduces a kernel API for inotify, making it possible for kernel to benefit from inotify's mechanism for watching inodes without being forced to compile in the support for userspace (commit)

  • kconfig: allow loading multiple configurations (commit). integrate split config into silentoldconfig (commit), add symbol option config syntax (commit)

  • kbuild: 'make headers_install': A make target which exports a subset of kernel headers which contain definitions which are useful for system libraries and tools (commit), 'make headers_check' (commit)

  • Temporarily add EXPORT_UNUSED_SYMBOL and EXPORT_UNUSED_SYMBOL_GPL. These will be used as a transition measure for symbols that aren't used in the kernel and are on the way out (commit)

  • tcrypt: Add speed tests (benchmarks) for digest algorithms (commit)

  • WATCHDOG: add WDIOC_GETTIMELEFT ioctl: you can now read the time left before the watchdog would reboot your system (commit)

  • MD: merge raid5 and raid6 code (commit), allow re-add to work on array without bitmaps (commit), allow rdev state to be set via sysfs (commit), allow raid 'layout' to be read and set via sysfs (commit), set/get state of array via sysfs (commit), allow the write_mostly flag to be set via sysfs (commit), allow resync_start to be set and queried via sysfs (commit), support stripe/offset mode in raid10 (commit)

  • Turn off chmod() on the /proc/<pid>/ files, since there is no good reason to allow it (commit)

  • symlink nesting level change: It's way past time to bump it to 8. Everyone had been warned - for months now (commit)

  • ramdisk blocksize Kconfig entry (commit)

  • Fix and enable EDAC sysfs operation (commit)

  • FDPIC: Add coredump capability for the ELF-FDPIC binfmt (commit)

  • blktrace: readahead support (commit)

Other stuff

Architecture-specific changes

x86 32/64

Make powernow-k7 work on SMP kernels (commit), a cache pollution aware update to copy_from_user_ll() (commit), a x86-64 version of the "alternatives" feature in x86-32 (commit), nmi watchdog support for new Intel CPUs (commit), reliable stack trace support for x86-64 (commit), x86_64 stack overflow debugging (commit)

PPC

Add cpufreq support to Xserve G5 (commit), use the device tree for the iSeries vio bus probe (commit), (commit), add support for PCI-Express nodes in the device tree (commit), oprofile support for POWER6 (commit), add cell RAS support (commit), support for Time-Of-Day-Clock (commit), base support for the Freescale MPC8349E-mITX eval board (commit), 85xx CDS board support (commit), 86xx HPCN platform support (commit), (commit), (commit), (commit), (commit), (commit), Freescale mpc7448 (Taiga) board support (commit)

ARM

Initial uCLinux support for MMU-based CPUs (commit), add the base support for Hilscher's netX network processors (commit), add AMBA CLCD support in lpd7a40x (commit), add support for Philips PNX4008 ARM platform (commit), add spi support to lubbock platform (commit), add support for NXDKN development board (commit), core support for the Samsung s3c2442, and its serial port (commit), framebuffer driver for Hilscher netX (commit), add support for NXDB500 development board (commit), add support for NXEB500HMI development board (commit), add support for Trizeps4 SoM and ConXS-evalboard (commit), add cirrus logic edb9315 support (commit), add ajeco 1arm sbc support (commit)

MIPS

Add: support for the S3c2412 core cpu (commit), APM emu support (commit), the R5500-based NEC EMMA2RH Mark-eins board (commit). the GT-64120-based Wind River 4KC PPMC evaluation board (commit), the RM9000-based Basler eXcite smart camera platform (commit), cirrus logic edb9315 support to ep93xx (commit) and for edb9302 (commit), MIPS32/MIPS64 secondary cache management (commit), remove support for NEC DDB5476 (commit) and DDB5074 (commit), add core support for the TI F-Sample Board (OMAP 850) (commit), readd Amstrad Delta USB support (commit), add GPMC support for OMAP2 (commit), add bitbank SPI driver for Innovator 1510 touchscreen (commit) and add oprofile Support VSMP on 34K (commit)

SPARC64

Use the OBP to obtain information avout the system (commit), (commit)

IA64

MSI support for Altix (commit), (commit)

S390

S390 Hypervisor Filesystem (commit), add support for parallel-access-volumes to the dasd driver (commit)

m68k

Coldfire 532x support (commit), (commit), (commit)

Filesystems

  • Ext3: ext3-get-blocks 2.6.17's patch caused ~20% degrade in Sequential read performance in the tiobench benchmark, 2.6.18 fixes this regression (commit); add "-o bh" option to force use of buffer_heads (commit)

  • FUSE: Add POSIX file locking support (commit), synchronous request interruption (commit) and a control filesystem to fuse, replacing the attributes currently exported through sysfs (commit)

  • JFFS2: XATTR support including POSIX-ACL and SELinux support (commit), and allow alternate JFFS2 mount variant for root filesystem, details in the commit link (commit)

  • CIFS: NTLMv2 authentication support (stronger authentication than default NTLM) (commit), (commit), (commit), (commit), support for setting up SMB sessions to legacy lanman servers such as OS/2 and Windows 95 (but such mounts may be insecure) (commit), support for older servers which require plaintext passwords (disabled by default) (commit), (commit), enable sec flags on mount (commit)

SELinux

Add security class for appletalk sockets so that they can be distinguished in SELinux policy (commit), execve argument logging (commit), ppid logging (commit), filtering by ppid (commit), path-based rules using internally the inotify API (commit), SELinux hooks to support the access key retention subsystem within the kernel (commit), support for a rule key, which can be used to tie audit records to audit rules. This is useful when a watched file is accessed through a link or symlink, as well as for general audit log analysis (commit), support for object context filters based on the elements of the SELinux context (commit), audit syscall classes: Allow to tie upper bits of syscall bitmap in audit rules to kernel-defined sets of syscalls (commit), add security hooks to {get,set}affinity to enable security modules to control these operations between tasks with task_setscheduler and task_getscheduler LSM hooks (commit), add a security hook call to enable security modules to control the ability to attach a task to a cpuset (commit), implement an LSM hook for setting a task's IO priority (commit), add security_task_movememory calls to mm code to enable security modules to mediate this operation between tasks (commit), add task_movememory hook to be called when memory owened by a task is to be moved (commit), add sockcreate node to procattr API - /proc/self/attr/sockcreate. A process may write a context into this interface and all subsequent sockets created will be labeled with that context (commit), add rootcontext= option to label root inode when mounting (commit), add audit AUDIT_PERM support [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git (commit)

Networking

  • Since 2.6.13, the linux networking stack has a pluggable interface for TCP congestion algorithms, so it's possible to choose between different congestion algorithms (configurable through /proc/sys/net/ipv4/tcp_congestion_control) or even choose between different congestion algorithms in a per-socket basis [through setsockopt(). To the 8 already available algorithms (Reno, BIC, Cubic, Westwood, H-TCP, High Speed TCP, Hybla, Scalable TCP) this release is adding two new congestion control algorithms: TCP Veno, which aims to improve TCP performance over wireless networks (commit) and TCP "Low Priority" (commit),

  • Add Generic Segmentation Offload (GSO), a feature that can improve the performance in some cases, for now it needs to be enabled through ethtool (announcement), (commit), (commit), (commit), (commit), (commit), (commit), (commit), (commit)

  • Add SIP protocol support to Netfilter (commit), a statistic match which is a combination of the nth and random matches (commit), a quota match (commit), and support for Call Forwarding to the H.323 netfilter module (commit)

  • TCP Probe congestion window tracing for capturing the changes to TCP connection state in response to incoming packets (commit), limited slow start for Highspeed TCP (RFC3742 limited slow start) congestion control module (commit), remove net.ipv4.ip_autoconfig sysctl (commit), add basic netlink support to the Ethernet bridge for link management including dump interfaces in bridges, monitor link status changes and change state of bridge port (commit), add multicast support for datagrams in LLC (commit), add a sysctl (ip_conntrack_checksum) to disable checksumming (commit), add a tcp_slow_start_after_idle sysctl that provides RFC2861 behavior if enabled (commit), basic sysfs support for ATM devices (commit), add datagram getpeersec for AF_UNIX, which allows to enable a security-aware application to retrieve the security context of the peer of a Unix datagram socket (commit), add 64-to-32 ioctl compatibility for X.25 (commit)

  • Wireless softmac: add SIOCSIWMLME wext (commit) and complete the shared key authentication implementation (commit)

Drivers and other subsystems

Video

Add i945G support to the intelfb driver (commit) and i945GM aswell (commit), add suspend/Resume support for nVidia nForce AGP (commit), update radeon driver and add r200 vertex program support (R200_EMIT_VAP_PVS_CNTL) (commit), add support for Geforce 6100 and related chipsets to nvidiafb (commit), add support for Display Update Module and RGB framebuffer device on Philips PNX4008 ARM board (commit), add frame buffer driver for the 2700G LCD controller present on Compulab CM-X270 computer module (commit)

Sound

hda-codec: Add support for: Apple Mac Mini (early 2006) (commit), Sony Vaio VGN-A790 laptop with ALC260 codec (commit), Sony Vaio VGN-S3HP with ALC260 codec (commit), Thinkpad X60/T60/Z60 laptops with AD1981HD codec (commit), LG S1 laptop (commit), ATI RS600 HDMI audio device (commit), 9227/9228/9229 sigmatel hda codecs (commit), HP nx6320 with AD1981HD codec (commit), ALC888, ALC660 (ALC861-compatible) codecs and HP xw4400/6400/8400/9400 (model=hp-bpc) (commit), Intel D965 boards with STAC9227 codec (commit)

Add support for SB Live! 24-Bit External remote control (commit), for Audigy4 (not Pro) (commit), for Turtle Beach Roadie (commit), for oss sound support in au1200 (commit), for iMac G5 iSight (commit), for power management in the cs5535audio (commit) and azt3328 (commit) drivers,

Add O_APPEND flag support to PCM to enable shared substreams among multiple processes (commit)

SCSI

Create libiscsi (commit), expose the bus setting to sysfs in aic7xxx driver (commit), add DMI (Diagnostics Monitoring Interface) (commit) and NVRAM 'Disable Serdes' bit support (commit) in qla2xxx driver, wide port support in mptsas (commit), and add 1078 ROC (Raid On Chip) Support (commit)

Input

Add mapping for Wistron MS 2111 (commit), add support for Intellimouse 4.0 (commit), and add input device support (commit)

USB

Add: Macbook Pro touchpad support (commit), new driver for Cypress CY7C63xxx mirco controllers (commit), add support for Kyocera Wireless KPC650/Passport EV-DO/1xRTT PC Cards (commit) and for Sierra Wireless MC5720 (commit), add support for ASIX 88178 chipset USB Gigabit Ethernet adaptor (commit), add support for Yost Engineering Servocenter3.1 (commit), add support for VIA VT8251 (commit), add support for WiseGroup., Ltd Smartjoy Dual PLUS Adapter (commit), add ZyXEL vendor/product ID to rtl8150 driver (commit), add driver for non-composite Sierra Wireless devices (commit), add ohci bits for the cirrus ep93xx (commit), add support for Susteen Datapilot Universal-2 cable in pl2303 (commit),

Network drivers

Add new SMSC LAN83C185 10BaseT/100BaseTX PHY driver for the PHY subsystem (commit), add VLAN (802.1q) support to the sis900 driver (commit), enable (via the IPW2200_PROMISCUOUS config option) the creation of a second interface prefixed 'rtap' for RF promiscuous mode in the ipw2200 driver (commit), add TRENDnet TE-CF100 ethernet adapter support in pcnet_cs driver (commit), add support for the Cicada 8201 PHY (commit); expose several configuration knobs configurable through ethtool in the forcedeth driver - ring sizes (commit) WOL (commit) rx and tx checksum offloads (commit) flow control (commit) diagnostic tests (commit) and hardware statistic counters (commit) and add new device ids (commit)-; convert au1000_eth driver to use PHY framework (commit), enable shared key authentication (commit) in the bcm43xx driver and add ipv6 TSO feature (commit) in the TG3 driver, allow WoL settings on new 5708 chips (commit) and add firmware decompression (commit) in the BNX2 driver, add ethtool eeprom support (commit) in 8139cp driver, add WOL support (commit) in the b44 driver, add netpoll support to the s2io driver (commit), and add support for the Cicada 8201 PHY (commit); add ich8lan core functions (commit), smart power down code (commit) and integrate ich8 support into driver (commit) in e1000 driver; NAPI support for via-rhine (commit)

V4L/DVB

Cx88 driver: added support for KWorld MCE 200 Deluxe (commit), IR remote support for DTV2000H (commit), basic support for Leadtek Winfast DTV2000H card (commit), support for the new cx88 card #50: NPG Tech RealTV, including it's remote (commit), support for FusionHDTV 3 Gold (original revision) (commit), support for Geniatech Digistar / Digiwave 103g (commit)

Add support for pcHDTV HD5500 ATSC/QAM (commit), add support for DViCO FusionHDTV DVB-T Lite 2nd revision in the Dvb-bt8xx driver (commit), enable Blackbird MPEG encoder support in KWorld HardwareMpegTV XPert: (commit), add support for the TCL M2523_3DB_E tuner (commit), implement v4l2 driver for the Hauppauge PVR USB2 TV tuner (commit), add v4l2 compatibility to the pwc driver, include the decompressor, export to userland compressed stream, more cameras supported etc (commit), add support for the Texas Instruments TLV320AIC23B audio codec (commit), Genpix 8PSK->USB driver (commit), add support for Samsung TCPG 6121P30A PAL tuner (commit), add support for Avermedia 6 Eyes AVS6EYES (commit), add support for the cx25836/7 video decoder (commit), add support for VP-3250 ATSC card (commit), add support for DViCO FusionHDTV DVB-T Dual USB based on zl10353 (commit), add CX2341X MPEG encoder module (commit), add support for the DNTV Live! mini DVB-T card (commit)

RNG

Remove old HW RNG support (commit), and add a new generic HW RNG core (commit), Geode HW RNG driver (commit), AMD HW RNG driver (commit), VIA HW RNG driver (commit), Intel HW RNG driver (commit), bcm43xx HW RNG driver (commit), ixp4xx HW RNG driver (commit), TI OMAP CPU family HW RNG driver (commit)

RTC

Add: driver for ARM AMBA PL031 RTC (commit), AT91RM9200 RTC driver (commit), rtc-dev UIE emulation for UIE-less rtc drivers (commit), v3020 RTC support (commit), rtc-ds1742 driver for the Dallas DS1742 RTC chip (commit), rtc-ds1553 driver for the Dallas DS1553 RTC chip (commit), rtc-rs5c348 driver for the Ricoh RS5C348 RTC chip (commit), class driver for Samsung S3C series SoC (commit), "RTC-framework" driver for DS1307 and similar RTC chips (commit), max6902 RTC support for the MAX6902 SPI RTC chip (commit), port of the driver for the pcf8583 i2c rtc controller to the generic RTC framework (commit), support for the I2C-attached Intersil ISL1208 RTC chip (commit)

Various drivers

  • Initial support for MCS7780 based dongles in IRDA (commit)

  • Kernel connection management agent over Infiniband that connects based on IP addresses (commit) and add an address translation service that maps IP addresses to Infiniband GID addresses using IPoIB (commit)

  • ieee1394: Add support for the following types of hardware: nodes that have a link speed < PHY speed, 1394b PHYs that are less than S800 capable, and 1394b/1394a adapter cable between two 1394b PHYs (commit)

  • hwmon: add sysfs interface for individual alarm files (commit), new hwmon driver which supports voltage and temperature measurement features of SMSC LPC47M192 and LPC47M997 chips (commit), add support for Intel Core and Conroe (commit), add new hardware monitoring driver abituguru for the Abit uGuru (commit), add LM82 temperature sensor support (similar to the LM83, but less featureful) (commit), new hardware monitoring driver for the National Semiconductor LM70 temperature sensor (commit), new hardware monitoring driver for the Winbond W83791D (commit)

  • w1: add userspace communication protocol over connector (commit); replace dscore and ds_w1_bridge with ds2490 driver (commit)

  • Bluetooth: add automatic sniff mode support (commit), add suspend/resume support to the HCI USB driver (commit)

  • I2C: Add support for the ST m41t81 and m41t85 i2c rtc chips (commit), add ATI IXP200/300/400 support (commit), add support for the new nForce4 MCP51 (also known as nForce 410 or 430) and nForce4 MCP55 to the i2c-nforce2 driver (commit), and new bus driver for the Opencores I2C controller (commit)

  • pcmcia: TI PCIxx12 Cardbus controller support (commit)

  • synclink_gt: add GT2 adapter support (commit)

  • AX88796 parallel port driver (commit)

  • Add Specialix IO8+ card support hotplug support (commit)

  • Add Computone Intelliport Plus serial hotplug support (commit)

  • LED: Support for Amstrad Delta (commit), add a LED heartbeat trigger (commit), class support for Soekris net48xx (commit)

Оставьте свой комментарий !

Ваше имя:
Комментарий:
Оба поля являются обязательными

 Автор  Комментарий к данной статье