<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/block, branch v2.6.30</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
</subtitle>
<id>https://git.shady.money/linux/atom?h=v2.6.30</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v2.6.30'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2009-05-19T06:27:42Z</updated>
<entry>
<title>xen/blkfront: fix warning when deleting gendisk on unplug/shutdown</title>
<updated>2009-05-19T06:27:42Z</updated>
<author>
<name>Ian Campbell</name>
<email>ian.campbell@citrix.com</email>
</author>
<published>2009-05-19T06:27:42Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=31a14400e8f365e5d4d1a0b2a1ef4d5405d6091e'/>
<id>urn:sha1:31a14400e8f365e5d4d1a0b2a1ef4d5405d6091e</id>
<content type='text'>
Currently blkfront gives a warning when hot unplugging due to calling
del_gendisk() with interrupts disabled (due to blkif_io_lock).

WARNING: at kernel/softirq.c:124 local_bh_enable+0x36/0x84()
Modules linked in: xenfs xen_netfront ext3 jbd mbcache xen_blkfront
Pid: 13, comm: xenwatch Not tainted 2.6.29-xs5.5.0.13 #3
Call Trace:
 [&lt;c012611c&gt;] warn_slowpath+0x80/0xb6
 [&lt;c0104cf1&gt;] xen_sched_clock+0x16/0x63
 [&lt;c0104710&gt;] xen_force_evtchn_callback+0xc/0x10
 [&lt;c0104e32&gt;] check_events+0x8/0xe
 [&lt;c0104d9b&gt;] xen_restore_fl_direct_end+0x0/0x1
 [&lt;c0103749&gt;] xen_mc_flush+0x10a/0x13f
 [&lt;c0105bd2&gt;] __switch_to+0x114/0x14e
 [&lt;c011d92b&gt;] dequeue_task+0x62/0x70
 [&lt;c0123b6f&gt;] finish_task_switch+0x2b/0x84
 [&lt;c0299877&gt;] schedule+0x66d/0x6e7
 [&lt;c0104710&gt;] xen_force_evtchn_callback+0xc/0x10
 [&lt;c0104710&gt;] xen_force_evtchn_callback+0xc/0x10
 [&lt;c012a642&gt;] local_bh_enable+0x36/0x84
 [&lt;c022f9a7&gt;] sk_filter+0x57/0x5c
 [&lt;c0233dae&gt;] netlink_broadcast+0x1d5/0x315
 [&lt;c01c6371&gt;] kobject_uevent_env+0x28d/0x331
 [&lt;c01e7ead&gt;] device_del+0x10f/0x120
 [&lt;c01e7ec6&gt;] device_unregister+0x8/0x10
 [&lt;c015f86d&gt;] bdi_unregister+0x2d/0x39
 [&lt;c01bf6f4&gt;] unlink_gendisk+0x23/0x3e
 [&lt;c01ac946&gt;] del_gendisk+0x7b/0xe7
 [&lt;d0828c19&gt;] blkfront_closing+0x28/0x6e [xen_blkfront]
 [&lt;d082900c&gt;] backend_changed+0x3ad/0x41d [xen_blkfront]

We can fix this by calling del_gendisk() later in blkfront_closing, after
releasing blkif_io_lock. Since the queue is stopped during the interrupts
disabled phase I don't think there is any danger of an event occuring between
releasing the blkif_io_lock and deleting the disk.

Signed-off-by: Ian Campbell &lt;ian.campbell@citrix.com&gt;
Cc: Jeremy Fitzhardinge &lt;jeremy@goop.org&gt;
Signed-off-by: Jens Axboe &lt;jens.axboe@oracle.com&gt;
</content>
</entry>
<entry>
<title>xen/blkfront: allow xenbus state transition to Closing-&gt;Closed  when not Connected</title>
<updated>2009-05-19T06:25:48Z</updated>
<author>
<name>Ian Campbell</name>
<email>ian.campbell@citrix.com</email>
</author>
<published>2009-05-19T06:25:48Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=28afea5b2ffaa48f4f43d22ae8edcc384c05df80'/>
<id>urn:sha1:28afea5b2ffaa48f4f43d22ae8edcc384c05df80</id>
<content type='text'>
This situation can occur when attempting to attach a block device whose
backend is an empty physical CD-ROM driver. The backend in this case
will go directly from the Initialising state to Closing-&gt;Closed.
Previously this would result in a NULL pointer deref on info-&gt;gd
(xenbus_dev_fatal does not return as a1a15ac5 seems to expect)

Cc: stable@kernel.org
Signed-off-by: Ian Campbell &lt;ian.campbell@citrix.com&gt;
Acked-by: Jeremy Fitzhardinge &lt;jeremy.fitzhardinge@citrix.com&gt;
Signed-off-by: Jens Axboe &lt;jens.axboe@oracle.com&gt;
</content>
</entry>
<entry>
<title>hd: fix locking</title>
<updated>2009-04-28T18:24:20Z</updated>
<author>
<name>Tejun Heo</name>
<email>tj@kernel.org</email>
</author>
<published>2009-04-28T03:38:33Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=0191944282e84931f92915b5f06b348a92dac7e1'/>
<id>urn:sha1:0191944282e84931f92915b5f06b348a92dac7e1</id>
<content type='text'>
hd dance around local irq and HD_IRQ enable without achieving much.
It ends up transferring data from irq handler with both local irq and
HD_IRQ disabled.  The only place it actually does something is while
transferring the first block of a request which it does with HD_IRQ
disabled but local irq enabled.

Unfortunately, the dancing is horribly broken from locking POV.  IRQ
and timeout handlers access block queue without grabbing the queue
lock and running the driver in SMP configuration crashes the whole
machine pretty quickly.

Remove meaningless irq enable/disable dancing and add proper locking
in issue, irq and timeout paths.

Signed-off-by: Tejun Heo &lt;tj@kernel.org&gt;
</content>
</entry>
<entry>
<title>mg_disk: fix CONFIG_LBD=y warning</title>
<updated>2009-04-28T18:24:20Z</updated>
<author>
<name>Bartlomiej Zolnierkiewicz</name>
<email>bzolnier@gmail.com</email>
</author>
<published>2009-04-28T03:38:33Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=0d9f346fb0cd6d6fc70827c5396a0d83939530e4'/>
<id>urn:sha1:0d9f346fb0cd6d6fc70827c5396a0d83939530e4</id>
<content type='text'>
drivers/block/mg_disk.c: In function ‘mg_dump_status’:
drivers/block/mg_disk.c:265: warning: format ‘%ld’ expects type ‘long int’, but
argument 2 has type ‘sector_t’

[ Impact: kill build warning ]

Cc: unsik Kim &lt;donari75@gmail.com&gt;
Signed-off-by: Bartlomiej Zolnierkiewicz &lt;bzolnier@gmail.com&gt;
Signed-off-by: Tejun Heo &lt;tj@kernel.org&gt;
</content>
</entry>
<entry>
<title>mg_disk: fix locking</title>
<updated>2009-04-28T18:24:19Z</updated>
<author>
<name>Tejun Heo</name>
<email>tj@kernel.org</email>
</author>
<published>2009-04-28T03:38:32Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=39f36b47caae1443eb37c34c6def108bb79f8d25'/>
<id>urn:sha1:39f36b47caae1443eb37c34c6def108bb79f8d25</id>
<content type='text'>
IRQ and timeout handlers call functions which expect locked queue lock
without locking it.  Fix it.

While at it, convert 0s used as null pointer constant to NULLs.

[ Impact: fix locking, cleanup ]

Signed-off-by: Tejun Heo &lt;tj@kernel.org&gt;
Cc: unsik Kim &lt;donari75@gmail.com&gt;
</content>
</entry>
<entry>
<title>umem: fix request_queue lock warning</title>
<updated>2009-04-24T06:54:21Z</updated>
<author>
<name>Sage Weil</name>
<email>sage@newdream.ne</email>
</author>
<published>2009-04-23T06:37:58Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=f3c737de8f57b5ce756010c2175f7d574194b30d'/>
<id>urn:sha1:f3c737de8f57b5ce756010c2175f7d574194b30d</id>
<content type='text'>
The umem driver issues two warnings on boot, due to blk_plug_device() and
blk_remove_plug() being called without q-&gt;queue_lock held.  Starting with
e48ec690 (block: extend queue_flag bitops), the queue_flag_* functions
warn if q-&gt;queue_lock doesn't appear to be locked.  In fact, q-&gt;queue_lock
is NULL (though that apparently isn't otherwise a problem as the driver is
using card-&gt;lock for everything).

Although blk_init_queue() with take a request_fn_proc and spinlock_t*,
there isn't a corresponding init helper that takes a make_request_fn.
Setting queue_lock to &amp;card-&gt;lock explicitly seems to work fine for me.
The warning goes away and the device appears to behave.

[    1.531881] v2.3 : Micro Memory(tm) PCI memory board block driver
[    1.538136] umem 0000:02:01.0: PCI INT A -&gt; GSI 20 (level, low) -&gt; IRQ 20
[    1.545018] umem 0000:02:01.0: Micro Memory(tm) controller found (PCI Mem Module (Battery Backup))
[    1.554176] umem 0000:02:01.0: CSR 0xfc9ffc00 -&gt; 0xffffc200013d0c00 (0x100)
[    1.561279] umem 0000:02:01.0: Size 1048576 KB, Battery 1 Disabled (FAILURE), Battery 2 Disabled (FAILURE)
[    1.571114] umem 0000:02:01.0: Window size 16777216 bytes, IRQ 20
[    1.577304] umem 0000:02:01.0: memory NOT initialized. Consider over-writing whole device.
[    1.585989]  umema:&lt;4&gt;------------[ cut here ]------------
[    1.591775] WARNING: at include/linux/blkdev.h:492 blk_plug_device+0x6d/0x106()
[    1.592025] Hardware name: H8SSL
[    1.592025] Modules linked in:
[    1.592025] Pid: 1, comm: swapper Not tainted 2.6.29 #8
[    1.592025] Call Trace:
[    1.592025]  [&lt;ffffffff8023c994&gt;] warn_slowpath+0xd3/0xf2
[    1.592025]  [&lt;ffffffff8025a5b5&gt;] ? save_trace+0x3f/0x9b
[    1.592025]  [&lt;ffffffff8025a68b&gt;] ? add_lock_to_list+0x7a/0xba
[    1.592025]  [&lt;ffffffff8025e609&gt;] ? validate_chain+0xb3b/0xce8
[    1.592025]  [&lt;ffffffff80441556&gt;] ? mm_make_request+0x27/0x59
[    1.592025]  [&lt;ffffffff80441556&gt;] ? mm_make_request+0x27/0x59
[    1.592025]  [&lt;ffffffff8025ef04&gt;] ? __lock_acquire+0x74e/0x7b9
[    1.592025]  [&lt;ffffffff8025a70e&gt;] ? get_lock_stats+0x34/0x5e
[    1.592025]  [&lt;ffffffff8025a746&gt;] ? put_lock_stats+0xe/0x27
[    1.592025]  [&lt;ffffffff80441556&gt;] ? mm_make_request+0x27/0x59
[    1.592025]  [&lt;ffffffff803ad165&gt;] blk_plug_device+0x6d/0x106
[    1.592025]  [&lt;ffffffff80441575&gt;] mm_make_request+0x46/0x59
[    1.592025]  [&lt;ffffffff803ac2d9&gt;] generic_make_request+0x335/0x3cf
[    1.592025]  [&lt;ffffffff8027fcc7&gt;] ? mempool_alloc_slab+0x11/0x13
[    1.592025]  [&lt;ffffffff8027fdce&gt;] ? mempool_alloc+0x45/0x101
[    1.592025]  [&lt;ffffffff8025a746&gt;] ? put_lock_stats+0xe/0x27
[    1.592025]  [&lt;ffffffff803adda5&gt;] submit_bio+0x10a/0x119
[    1.592025]  [&lt;ffffffff802c8d00&gt;] submit_bh+0xe5/0x109
[    1.592025]  [&lt;ffffffff802cbf43&gt;] block_read_full_page+0x2aa/0x2cb
[    1.592025]  [&lt;ffffffff802cf4c4&gt;] ? blkdev_get_block+0x0/0x4c
[    1.592025]  [&lt;ffffffff805c90a8&gt;] ? _spin_unlock_irq+0x36/0x51
[    1.592025]  [&lt;ffffffff80286836&gt;] ? __lru_cache_add+0x92/0xb2
[    1.592025]  [&lt;ffffffff802cf008&gt;] blkdev_readpage+0x13/0x15
[    1.592025]  [&lt;ffffffff8027de06&gt;] read_cache_page_async+0x90/0x134
[    1.592025]  [&lt;ffffffff802ceff5&gt;] ? blkdev_readpage+0x0/0x15
[    1.592025]  [&lt;ffffffff802f5f1c&gt;] ? adfspart_check_ICS+0x0/0x16c
[    1.592025]  [&lt;ffffffff8027deb8&gt;] read_cache_page+0xe/0x45
[    1.592025]  [&lt;ffffffff802f5170&gt;] read_dev_sector+0x2e/0x93
[    1.592025]  [&lt;ffffffff802f5f44&gt;] adfspart_check_ICS+0x28/0x16c
[    1.592025]  [&lt;ffffffff8025d427&gt;] ? trace_hardirqs_on+0xd/0xf
[    1.592025]  [&lt;ffffffff802f5f1c&gt;] ? adfspart_check_ICS+0x0/0x16c
[    1.592025]  [&lt;ffffffff802f59c5&gt;] rescan_partitions+0x168/0x2fb
[    1.592025]  [&lt;ffffffff802ceae9&gt;] __blkdev_get+0x259/0x336
[    1.592025]  [&lt;ffffffff803ca1e2&gt;] ? kobject_put+0x47/0x4b
[    1.592025]  [&lt;ffffffff802cebd1&gt;] blkdev_get+0xb/0xd
[    1.592025]  [&lt;ffffffff802f5773&gt;] register_disk+0xc4/0x12b
[    1.592025]  [&lt;ffffffff803b2a7b&gt;] add_disk+0xc3/0x12d
[    1.592025]  [&lt;ffffffff808a1d4a&gt;] ? mm_init+0x0/0x1a5
[    1.592025]  [&lt;ffffffff808a1e73&gt;] mm_init+0x129/0x1a5
[    1.592025]  [&lt;ffffffff808a1d4a&gt;] ? mm_init+0x0/0x1a5
[    1.592025]  [&lt;ffffffff80209056&gt;] _stext+0x56/0x130
[    1.592025]  [&lt;ffffffff80274932&gt;] ? register_irq_proc+0xae/0xca
[    1.592025]  [&lt;ffffffff802f0000&gt;] ? proc_pid_lookup+0xb4/0x18b
[    1.592025]  [&lt;ffffffff8087f975&gt;] kernel_init+0x132/0x18b
[    1.592025]  [&lt;ffffffff8020d17a&gt;] child_rip+0xa/0x20
[    1.592025]  [&lt;ffffffff8020cb40&gt;] ? restore_args+0x0/0x30
[    1.592025]  [&lt;ffffffff8087f843&gt;] ? kernel_init+0x0/0x18b
[    1.592025]  [&lt;ffffffff8020d170&gt;] ? child_rip+0x0/0x20
[    1.592025] ---[ end trace 7150b3b86da74e1e ]---
[    1.889858] ------------[ cut here ]------------[ve_plug+0x5f/0x91()
[    1.893848] Hardware name: H8SSL
[    1.893848] Modules linked in:
[    1.893848] Pid: 1, comm: swapper Tainted: G        W  2.6.29 #8
[    1.893848] Call Trace:
[    1.893848]  [&lt;ffffffff8023c994&gt;] warn_slowpath+0xd3/0xf2
[    1.893848]  [&lt;ffffffff805c8411&gt;] ? trace_hardirqs_on_thunk+0x3a/0x3f
[    1.893848]  [&lt;ffffffff8020cb40&gt;] ? restore_args+0x0/0x30
[    1.893848]  [&lt;ffffffff80254245&gt;] ? __atomic_notifier_call_chain+0x0/0xb2
[    1.893848]  [&lt;ffffffff805c90a3&gt;] ? _spin_unlock_irq+0x31/0x51
[    1.893848]  [&lt;ffffffff805c90bf&gt;] ? _spin_unlock_irq+0x4d/0x51
[    1.893848]  [&lt;ffffffff8044157d&gt;] ? mm_make_request+0x4e/0x59
[    1.893848]  [&lt;ffffffff8025a70e&gt;] ? get_lock_stats+0x34/0x5e
[    1.893848]  [&lt;ffffffff8025a75d&gt;] ? put_lock_stats+0x25/0x27
[    1.893848]  [&lt;ffffffff80441504&gt;] ? mm_unplug_device+0x25/0x50
[    1.893848]  [&lt;ffffffff803acf23&gt;] blk_remove_plug+0x5f/0x91
[    1.893848]  [&lt;ffffffff8044150f&gt;] mm_unplug_device+0x30/0x50
[    1.893848]  [&lt;ffffffff803ab74a&gt;] blk_unplug+0x78/0x7d
[    1.893848]  [&lt;ffffffff803ab75c&gt;] blk_backing_dev_unplug+0xd/0xf
[    1.893848]  [&lt;ffffffff802c853c&gt;] block_sync_page+0x4a/0x4c
[    1.893848]  [&lt;ffffffff8027da1c&gt;] sync_page+0x44/0x4d
[    1.893848]  [&lt;ffffffff805c66fd&gt;] __wait_on_bit_lock+0x42/0x8a
[    1.893848]  [&lt;ffffffff8027d9d8&gt;] ? sync_page+0x0/0x4d
[    1.893848]  [&lt;ffffffff8027d9c4&gt;] __lock_page+0x64/0x6b
[    1.893848]  [&lt;ffffffff802508db&gt;] ? wake_bit_function+0x0/0x2a
[    1.893848]  [&lt;ffffffff8027de4a&gt;] read_cache_page_async+0xd4/0x134
[    1.893848]  [&lt;ffffffff802ceff5&gt;] ? blkdev_readpage+0x0/0x15
[    1.893848]  [&lt;ffffffff802f5f1c&gt;] ? adfspart_check_ICS+0x0/0x16c
[    1.893848]  [&lt;ffffffff8027deb8&gt;] read_cache_page+0xe/0x45
[    1.893848]  [&lt;ffffffff802f5170&gt;] read_dev_sector+0x2e/0x93
[    1.893848]  [&lt;ffffffff802f5f44&gt;] adfspart_check_ICS+0x28/0x16c
[    1.893848]  [&lt;ffffffff8025d427&gt;] ? trace_hardirqs_on+0xd/0xf
[    1.893848]  [&lt;ffffffff802f5f1c&gt;] ? adfspart_check_ICS+0x0/0x16c
[    1.893848]  [&lt;ffffffff802f59c5&gt;] rescan_partitions+0x168/0x2fb
[    1.893848]  [&lt;ffffffff802ceae9&gt;] __blkdev_get+0x259/0x336
[    1.893848]  [&lt;ffffffff803ca1e2&gt;] ? kobject_put+0x47/0x4b
[    1.893848]  [&lt;ffffffff802cebd1&gt;] blkdev_get+0xb/0xd
[    1.893848]  [&lt;ffffffff802f5773&gt;] register_disk+0xc4/0x12b
[    1.893848]  [&lt;ffffffff803b2a7b&gt;] add_disk+0xc3/0x12d
[    1.893848]  [&lt;ffffffff808a1d4a&gt;] ? mm_init+0x0/0x1a5
[    1.893848]  [&lt;ffffffff808a1e73&gt;] mm_init+0x129/0x1a5
[    1.893848]  [&lt;ffffffff808a1d4a&gt;] ? mm_init+0x0/0x1a5
[    1.893848]  [&lt;ffffffff80209056&gt;] _stext+0x56/0x130
[    1.893848]  [&lt;ffffffff80274932&gt;] ? register_irq_proc+0xae/0xca
[    1.893848]  [&lt;ffffffff802f0000&gt;] ? proc_pid_lookup+0xb4/0x18b
[    1.893848]  [&lt;ffffffff8087f975&gt;] kernel_init+0x132/0x18b
[    1.893848]  [&lt;ffffffff8020d17a&gt;] child_rip+0xa/0x20
[    1.893848]  [&lt;ffffffff8020cb40&gt;] ? restore_args+0x0/0x30
[    1.893848]  [&lt;ffffffff8087f843&gt;] ? kernel_init+0x0/0x18b
[    1.893848]  [&lt;ffffffff8020d170&gt;] ? child_rip+0x0/0x20
[    1.893848] ---[ end trace 7150b3b86da74e1f ]---

Signed-off-by: Sage Weil &lt;sage@newdream.net&gt;
Signed-off-by: Jens Axboe &lt;jens.axboe@oracle.com&gt;
</content>
</entry>
<entry>
<title>USB: add reset endpoint operations</title>
<updated>2009-04-17T17:50:27Z</updated>
<author>
<name>David Vrabel</name>
<email>david.vrabel@csr.com</email>
</author>
<published>2009-04-08T17:36:28Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=3444b26afa145148951112534f298bdc554ec789'/>
<id>urn:sha1:3444b26afa145148951112534f298bdc554ec789</id>
<content type='text'>
Wireless USB endpoint state has a sequence number and a current
window and not just a single toggle bit.  So allow HCDs to provide a
endpoint_reset method and call this or clear the software toggles as
required (after a clear halt, set configuration etc.).

usb_settoggle() and friends are then HCD internal and are moved into
core/hcd.h and all device drivers call usb_reset_endpoint() instead.

If the device endpoint state has been reset (with a clear halt) but
the host endpoint state has not then subsequent data transfers will
not complete. The device will only work again after it is reset or
disconnected.

Signed-off-by: David Vrabel &lt;david.vrabel@csr.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>brd: fix cacheflushing</title>
<updated>2009-04-15T10:10:13Z</updated>
<author>
<name>Nick Piggin</name>
<email>npiggin@suse.de</email>
</author>
<published>2009-04-15T08:32:07Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=c2572f2b4ffc27ba79211aceee3bef53a59bb5cd'/>
<id>urn:sha1:c2572f2b4ffc27ba79211aceee3bef53a59bb5cd</id>
<content type='text'>
brd is missing a flush_dcache_page. On 2nd thoughts, perhaps it is the
pagecache's responsibility to flush user virtual aliases (the driver of
course should flush kernel virtual mappings)... but anyway, there
already exists cache flushing for one direction of transfer, so we
should add the other.

Signed-off-by: Nick Piggin &lt;npiggin@suse.de&gt;
Signed-off-by: Jens Axboe &lt;jens.axboe@oracle.com&gt;
</content>
</entry>
<entry>
<title>brd: support barriers</title>
<updated>2009-04-15T10:10:13Z</updated>
<author>
<name>Nick Piggin</name>
<email>npiggin@suse.de</email>
</author>
<published>2009-04-15T08:27:07Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=dfbc4752eab33e66f113f9daa2effbe241cd661d'/>
<id>urn:sha1:dfbc4752eab33e66f113f9daa2effbe241cd661d</id>
<content type='text'>
brd is always ordered (not that it matters, as it is defined not to
survive when the system goes down). So tell the block layer it is
ordered, which might be of help with testing filesystems.

Signed-off-by: Nick Piggin &lt;npiggin@suse.de&gt;
Signed-off-by: Jens Axboe &lt;jens.axboe@oracle.com&gt;
</content>
</entry>
<entry>
<title>Replace all DMA_nBIT_MASK macro with DMA_BIT_MASK(n)</title>
<updated>2009-04-13T22:04:33Z</updated>
<author>
<name>Yang Hongyang</name>
<email>yanghy@cn.fujitsu.com</email>
</author>
<published>2009-04-13T21:40:14Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=e930438c42e744ef1f8bfdbb338253c9f384df42'/>
<id>urn:sha1:e930438c42e744ef1f8bfdbb338253c9f384df42</id>
<content type='text'>
This is the second go through of the old DMA_nBIT_MASK macro,and there're not
so many of them left,so I put them into one patch.I hope this is the last round.
After this the definition of the old DMA_nBIT_MASK macro could be removed.

Signed-off-by: Yang Hongyang &lt;yanghy@cn.fujitsu.com&gt;
Cc: Russell King &lt;rmk@arm.linux.org.uk&gt;
Cc: Tony Lindgren &lt;tony@atomide.com&gt;
Cc: "David S. Miller" &lt;davem@davemloft.net&gt;
Cc: James Bottomley &lt;James.Bottomley@HansenPartnership.com&gt;
Cc: Greg KH &lt;greg@kroah.com&gt;
Cc: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
</feed>
