1 The following is a list of files and features that are going to be
2 removed in the kernel source tree. Every entry should contain what
3 exactly is going away, why it is happening, and who is going to be doing
4 the work. When the feature is removed from the kernel, it should also
5 be removed from this file.
7 ---------------------------
9 What: /sys/devices/.../power/state
10 dev->power.power_state
11 dpm_runtime_{suspend,resume)()
13 Why: Broken design for runtime control over driver power states, confusing
14 driver-internal runtime power management with: mechanisms to support
15 system-wide sleep state transitions; event codes that distinguish
16 different phases of swsusp "sleep" transitions; and userspace policy
17 inputs. This framework was never widely used, and most attempts to
18 use it were broken. Drivers should instead be exposing domain-specific
19 interfaces either to kernel or to userspace.
20 Who: Pavel Machek <pavel@suse.cz>
22 ---------------------------
24 What: RAW driver (CONFIG_RAW_DRIVER)
26 Why: declared obsolete since kernel 2.6.3
27 O_DIRECT can be used instead
28 Who: Adrian Bunk <bunk@stusta.de>
30 ---------------------------
32 What: drivers that were depending on OBSOLETE_OSS_DRIVER
33 (config options already removed)
35 Why: OSS drivers with ALSA replacements
36 Who: Adrian Bunk <bunk@stusta.de>
38 ---------------------------
40 What: raw1394: requests of type RAW1394_REQ_ISO_SEND, RAW1394_REQ_ISO_LISTEN
42 Why: Deprecated in favour of the new ioctl-based rawiso interface, which is
43 more efficient. You should really be using libraw1394 for raw1394
45 Who: Jody McIntyre <scjody@modernduck.com>
47 ---------------------------
49 What: sbp2: module parameter "force_inquiry_hack"
51 Why: Superceded by parameter "workarounds". Both parameters are meant to be
52 used ad-hoc and for single devices only, i.e. not in modprobe.conf,
53 therefore the impact of this feature replacement should be low.
54 Who: Stefan Richter <stefanr@s5r6.in-berlin.de>
56 ---------------------------
58 What: Video4Linux API 1 ioctls and video_decoder.h from Video devices.
60 Why: V4L1 AP1 was replaced by V4L2 API. during migration from 2.4 to 2.6
61 series. The old API have lots of drawbacks and don't provide enough
62 means to work with all video and audio standards. The newer API is
63 already available on the main drivers and should be used instead.
64 Newer drivers should use v4l_compat_translate_ioctl function to handle
65 old calls, replacing to newer ones.
66 Decoder iocts are using internally to allow video drivers to
67 communicate with video decoders. This should also be improved to allow
68 V4L2 calls being translated into compatible internal ioctls.
69 Who: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
71 ---------------------------
73 What: PCMCIA control ioctl (needed for pcmcia-cs [cardmgr, cardctl])
75 Files: drivers/pcmcia/: pcmcia_ioctl.c
76 Why: With the 16-bit PCMCIA subsystem now behaving (almost) like a
77 normal hotpluggable bus, and with it using the default kernel
78 infrastructure (hotplug, driver core, sysfs) keeping the PCMCIA
79 control ioctl needed by cardmgr and cardctl from pcmcia-cs is
80 unnecessary, and makes further cleanups and integration of the
81 PCMCIA subsystem into the Linux kernel device driver model more
82 difficult. The features provided by cardmgr and cardctl are either
83 handled by the kernel itself now or are available in the new
84 pcmciautils package available at
85 http://kernel.org/pub/linux/utils/kernel/pcmcia/
86 Who: Dominik Brodowski <linux@brodo.de>
88 ---------------------------
90 What: ip_queue and ip6_queue (old ipv4-only and ipv6-only netfilter queue)
92 Why: This interface has been obsoleted by the new layer3-independent
93 "nfnetlink_queue". The Kernel interface is compatible, so the old
94 ip[6]tables "QUEUE" targets still work and will transparently handle
95 all packets into nfnetlink queue number 0. Userspace users will have
96 to link against API-compatible library on top of libnfnetlink_queue
97 instead of the current 'libipq'.
98 Who: Harald Welte <laforge@netfilter.org>
100 ---------------------------
102 What: remove EXPORT_SYMBOL(kernel_thread)
104 Files: arch/*/kernel/*_ksyms.c
105 Why: kernel_thread is a low-level implementation detail. Drivers should
106 use the <linux/kthread.h> API instead which shields them from
107 implementation details and provides a higherlevel interface that
108 prevents bugs and code duplication
109 Who: Christoph Hellwig <hch@lst.de>
111 ---------------------------
113 What: CONFIG_FORCED_INLINING
115 Why: Config option is there to see if gcc is good enough. (in january
116 2006). If it is, the behavior should just be the default. If it's not,
117 the option should just go away entirely.
118 Who: Arjan van de Ven
120 ---------------------------
122 What: START_ARRAY ioctl for md
124 Files: drivers/md/md.c
125 Why: Not reliable by design - can fail when most needed.
127 Who: NeilBrown <neilb@suse.de>
129 ---------------------------
131 What: eepro100 network driver
133 Why: replaced by the e100 driver
134 Who: Adrian Bunk <bunk@stusta.de>
136 ---------------------------
138 What: drivers depending on OSS_OBSOLETE_DRIVER
139 When: options in 2.6.20, code in 2.6.22
140 Why: OSS drivers with ALSA replacements
141 Who: Adrian Bunk <bunk@stusta.de>
143 ---------------------------
145 What: pci_module_init(driver)
147 Why: Is replaced by pci_register_driver(pci_driver).
148 Who: Richard Knutsson <ricknu-0@student.ltu.se> and Greg Kroah-Hartman <gregkh@suse.de>
150 ---------------------------
152 What: Usage of invalid timevals in setitimer
154 Why: POSIX requires to validate timevals in the setitimer call. This
155 was never done by Linux. The invalid (e.g. negative timevals) were
156 silently converted to more or less random timeouts and intervals.
157 Until the removal a per boot limited number of warnings is printed
158 and the timevals are sanitized.
160 Who: Thomas Gleixner <tglx@linutronix.de>
162 ---------------------------
164 What: I2C interface of the it87 driver
166 Why: The ISA interface is faster and should be always available. The I2C
167 probing is also known to cause trouble in at least one case (see
169 Who: Jean Delvare <khali@linux-fr.org>
171 ---------------------------
173 What: Unused EXPORT_SYMBOL/EXPORT_SYMBOL_GPL exports
174 (temporary transition config option provided until then)
175 The transition config option will also be removed at the same time.
177 Why: Unused symbols are both increasing the size of the kernel binary
178 and are often a sign of "wrong API"
179 Who: Arjan van de Ven <arjan@linux.intel.com>
181 ---------------------------
183 What: mount/umount uevents
185 Why: These events are not correct, and do not properly let userspace know
186 when a file system has been mounted or unmounted. Userspace should
187 poll the /proc/mounts file instead to detect this properly.
188 Who: Greg Kroah-Hartman <gregkh@suse.de>
190 ---------------------------
192 What: USB driver API moves to EXPORT_SYMBOL_GPL
194 Files: include/linux/usb.h, drivers/usb/core/driver.c
195 Why: The USB subsystem has changed a lot over time, and it has been
196 possible to create userspace USB drivers using usbfs/libusb/gadgetfs
197 that operate as fast as the USB bus allows. Because of this, the USB
198 subsystem will not be allowing closed source kernel drivers to
199 register with it, after this grace period is over. If anyone needs
200 any help in converting their closed source drivers over to use the
201 userspace filesystems, please contact the
202 linux-usb-devel@lists.sourceforge.net mailing list, and the developers
203 there will be glad to help you out.
204 Who: Greg Kroah-Hartman <gregkh@suse.de>
206 ---------------------------
208 What: find_trylock_page
210 Why: The interface no longer has any callers left in the kernel. It
211 is an odd interface (compared with other find_*_page functions), in
212 that it does not take a refcount to the page, only the page lock.
213 It should be replaced with find_get_page or find_lock_page if possible.
214 This feature removal can be reevaluated if users of the interface
215 cannot cleanly use something else.
216 Who: Nick Piggin <npiggin@suse.de>
218 ---------------------------
220 What: Support for the Momentum / PMC-Sierra Jaguar ATX evaluation board
222 Why: Does no longer build since quite some time, and was never popular,
223 due to the platform being replaced by successor models. Apparently
224 no user base left. It also is one of the last users of
226 Who: Ralf Baechle <ralf@linux-mips.org>
228 ---------------------------
230 What: Support for the Momentum Ocelot, Ocelot 3, Ocelot C and Ocelot G
232 Why: Some do no longer build and apparently there is no user base left
234 Who: Ralf Baechle <ralf@linux-mips.org>
236 ---------------------------
238 What: Support for MIPS Technologies' Altas and SEAD evaluation board
240 Why: Some do no longer build and apparently there is no user base left
241 for these platforms. Hardware out of production since several years.
242 Who: Ralf Baechle <ralf@linux-mips.org>
244 ---------------------------
246 What: Support for the IT8172-based platforms, ITE 8172G and Globespan IVR
248 Why: Code does no longer build since at least 2.6.0, apparently there is
249 no user base left for these platforms. Hardware out of production
250 since several years and hardly a trace of the manufacturer left on
252 Who: Ralf Baechle <ralf@linux-mips.org>
254 ---------------------------
256 What: Interrupt only SA_* flags
258 Why: The interrupt related SA_* flags are replaced by IRQF_* to move them
259 out of the signal namespace.
261 Who: Thomas Gleixner <tglx@linutronix.de>
263 ---------------------------
265 What: i2c-ite and i2c-algo-ite drivers
267 Why: These drivers never compiled since they were added to the kernel
268 tree 5 years ago. This feature removal can be reevaluated if
269 someone shows interest in the drivers, fixes them and takes over
271 http://marc.theaimsgroup.com/?l=linux-mips&m=115040510817448
272 Who: Jean Delvare <khali@linux-fr.org>
274 ---------------------------
276 What: Bridge netfilter deferred IPv4/IPv6 output hook calling
278 Why: The deferred output hooks are a layering violation causing unusual
279 and broken behaviour on bridge devices. Examples of things they
280 break include QoS classifation using the MARK or CLASSIFY targets,
281 the IPsec policy match and connection tracking with VLANs on a
282 bridge. Their only use is to enable bridge output port filtering
283 within iptables with the physdev match, which can also be done by
284 combining iptables and ebtables using netfilter marks. Until it
285 will get removed the hook deferral is disabled by default and is
286 only enabled when needed.
288 Who: Patrick McHardy <kaber@trash.net>
290 ---------------------------
294 Why: The frame diverter is included in most distribution kernels, but is
295 broken. It does not correctly handle many things:
298 - network device RCU on removal
299 - input frames not correctly checked for protocol errors
300 It also adds allocation overhead even if not enabled.
301 It is not clear if anyone is still using it.
302 Who: Stephen Hemminger <shemminger@osdl.org>
304 ---------------------------
307 What: PHYSDEVPATH, PHYSDEVBUS, PHYSDEVDRIVER in the uevent environment
309 Why: The stacking of class devices makes these values misleading and
311 Class devices should not carry any of these properties, and bus
312 devices have SUBSYTEM and DRIVER as a replacement.
313 Who: Kay Sievers <kay.sievers@suse.de>
315 ---------------------------
319 Why: i2c-isa is a non-sense and doesn't fit in the device driver
320 model. Drivers relying on it are better implemented as platform
322 Who: Jean Delvare <khali@linux-fr.org>
324 ---------------------------