All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jiang Liu <liuj97@gmail.com>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: Yinghai Lu <yinghai@kernel.org>,
	Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>,
	Dely Sy <dely.l.sy@intel.com>, Scott Murray <scott@spiteful.org>,
	Jiang Liu <jiang.liu@huawei.com>,
	Keping Chen <chenkeping@huawei.com>,
	linux-pci@vger.kernel.org
Subject: Re: [PATCH RFC 00/17] Introduce a global lock to serialize all PCI hotplug
Date: Tue, 17 Apr 2012 22:53:15 +0800	[thread overview]
Message-ID: <4F8D83DB.4@gmail.com> (raw)
In-Reply-To: <20120416213351.GA22887@kroah.com>

Hi Greg,
	More logs for your reference below.
	Thanks!
	gerry

On 04/17/2012 05:33 AM, Greg KH wrote:
> On Tue, Apr 17, 2012 at 12:28:54AM +0800, Jiang Liu wrote:
>> There are multiple ways to trigger PCI hotplug requests concurrently,
>> such as:
>> 1. Sysfs interfaces exported by the PCI core subsystem
> 
> Which ones?
> 
>> 2. Sysfs interfaces exported by the PCI hotplug subsystem
> 
> Which ones?
> 
>> 3. PCI hotplug events triggered by PCI Hotplug Controllers
>> 4. ACPI hotplug events for PCI host bridges
> 
> Those are both the same.
> 
>> 5. Driver binding/unbinding events
> 
> Not really a "hotplug" event, that's something that all drivers in the
> kernel support.
> 
> And in the end, they all propagate down to the driver core to be the
> same thing that the PCI driver sees.
> 
>> The PCI core subsystem doesn't support concurrent hotplug operations yet,
>> so all PCI hotplug requests should be globally serialized.
> 
> Why do you think they are not?  These should all be serialized today,
> with the bus lock down in the driver core.  How is this failing?
> 
>> This patchset
>> introduces a global recursive rwsem to serialize all PCI hotplug operations.
> 
> Ick, why?  What's wrong with the lock we are already taking?  And why
> would you need a rwsem anyway?
> 
>> Following PCI hotplug drivers/interfaces have been enhanced with this
>> 1. Sysfs interfaces exported by the PCI core subsystem
>> 2. Sysfs interfaces exported by the PCI hotplug subsystem
>> 3. pciehp
>> 4. shpchp
>> 5. cpcihp_generic and cpcihp_zt5550
>> 6. fakephp
> 
> You are doing something wrong if you require this to be fixed up in each
> individual pci hotplug driver.  Fix this in the PCI core, if needed.
> But again, I don't see why it is needed.
> 
>> But there are still several TODOs:
>> 1) all other PCI hotplug driver in drivers/pci/hotplug directory
>> 2) SR-IOV
>> 3) acpiphp (plan to do this based on Yinghai's PCI root bus hotplug gate)
>> 4) pci_root (plan to do this based on Yinghai's PCI root bus hotplug gate)
>>
>> Basic test has been done as below, will find more hardwares to do more tests.
>> Start three scripts on an Intel Atom system to currently execute:
>> 1) remove/rescan PCI devices by sysfs interfaces exported by PCI core subsystem
>> 2) remove/rescan PCI devices by sysfs interfaces exported by fakephp driver
>> 3) load/unload fakephp driver
>> The test has run about four hours without failure.
> 
> And it fails without this?  How does it?
It's generated by executing following two scripts concurrently.
gerry@cat:~/tests$ cat hotplug 
#!/bin/bash

while true; do
        echo 0 > /sys/bus/pci/slots/0000\:00\:1c.0/power
        echo 0 > /sys/bus/pci/slots/0000\:00\:1c.1/power
        echo 0 > /sys/bus/pci/slots/0000\:00\:1c.2/power
        echo 1 > /sys/bus/pci/slots/0000\:00\:1c.3/power
        sleep 0.01
done;
gerry@cat:~/tests$ cat sysfs 
#!/bin/bash

while true; do
        echo 1 > /sys/devices/pci0000:00/0000:00:1c.0/remove
        echo 1 > /sys/devices/pci0000:00/0000:00:1c.1/remove
        echo 1 > /sys/devices/pci0000:00/0000:00:1c.2/remove
        echo 1 > /sys/devices/pci0000:00/pci_bus/0000:00/rescan
        sleep 0.01
done;


[  431.767731] ------------[ cut here ]------------
[  431.767744] WARNING: at fs/sysfs/dir.c:508 sysfs_add_one+0xb8/0xe0()
[  431.767749] Hardware name: To Be Filled By O.E.M.
[  431.767754] sysfs: cannot create duplicate filename '/devices/pci0000:00/0000:00:1c.2'
[  431.767759] Modules linked in: shpchp fakephp r8169
[  431.767774] Pid: 3276, comm: hotplug Tainted: G      D W    3.4.0-rc2+ #20
[  431.767779] Call Trace:
[  431.767791]  [<ffffffff81036eea>] warn_slowpath_common+0x7a/0xb0
[  431.767800]  [<ffffffff81036fc1>] warn_slowpath_fmt+0x41/0x50
[  431.767808]  [<ffffffff811a6c68>] sysfs_add_one+0xb8/0xe0
[  431.767817]  [<ffffffff811a6df6>] create_dir+0x76/0xd0
[  431.767825]  [<ffffffff811a719e>] sysfs_create_dir+0x7e/0xc0
[  431.767836]  [<ffffffff812da298>] kobject_add_internal+0xb8/0x210
[  431.767846]  [<ffffffff812da767>] kobject_add+0x67/0xc0
[  431.767856]  [<ffffffff817541bc>] ? klist_init+0x3c/0x60
[  431.767866]  [<ffffffff813f590d>] device_add+0xed/0x680
[  431.767875]  [<ffffffff812f632f>] pci_bus_add_device+0x1f/0x50
[  431.767884]  [<ffffffff812f6541>] pci_bus_add_devices+0x41/0x130
[  431.767893]  [<ffffffff81757bf7>] pci_rescan_bus+0xa7/0xc0
[  431.767903]  [<ffffffffa000e066>] legacy_store+0x66/0x80 [fakephp]
[  431.767913]  [<ffffffff811a517e>] ? sysfs_write_file+0xde/0x180
[  431.767922]  [<ffffffff811a5197>] sysfs_write_file+0xf7/0x180
[  431.767932]  [<ffffffff811347e1>] vfs_write+0xb1/0x180
[  431.767941]  [<ffffffff81134b08>] sys_write+0x48/0x90
[  431.767950]  [<ffffffff8178a0e2>] system_call_fastpath+0x16/0x1b
[  431.767957] ---[ end trace f99f468d766f03f8 ]---
[  431.767996] kobject_add_internal failed for 0000:00:1c.2 with -EEXIST, don't try to register things with the same n.
[  431.768060] Pid: 3276, comm: hotplug Tainted: G      D W    3.4.0-rc2+ #20
[  431.768066] Call Trace:
[  431.768077]  [<ffffffff812da33c>] kobject_add_internal+0x15c/0x210
[  431.768085]  [<ffffffff812da767>] kobject_add+0x67/0xc0
[  431.768093]  [<ffffffff817541bc>] ? klist_init+0x3c/0x60
[  431.768102]  [<ffffffff813f590d>] device_add+0xed/0x680
[  431.768111]  [<ffffffff812f632f>] pci_bus_add_device+0x1f/0x50
[  431.768120]  [<ffffffff812f6541>] pci_bus_add_devices+0x41/0x130
[  431.768129]  [<ffffffff81757bf7>] pci_rescan_bus+0xa7/0xc0
[  431.768140]  [<ffffffffa000e066>] legacy_store+0x66/0x80 [fakephp]
[  431.768150]  [<ffffffff811a517e>] ? sysfs_write_file+0xde/0x180
[  431.768160]  [<ffffffff811a5197>] sysfs_write_file+0xf7/0x180
[  431.768169]  [<ffffffff811347e1>] vfs_write+0xb1/0x180
[  431.768178]  [<ffffffff81134b08>] sys_write+0x48/0x90
[  431.768187]  [<ffffffff8178a0e2>] system_call_fastpath+0x16/0x1b
[  431.768205] pci 0000:00:1c.2: Error adding device, continuing


[  431.768229] ------------[ cut here ]------------
[  431.768234] kernel BUG at drivers/pci/bus.c:230!
[  431.768240] invalid opcode: 0000 [#2] SMP 
[  431.768249] CPU 1 
[  431.768252] Modules linked in: shpchp fakephp r8169
[  431.768266] 
[  431.768272] Pid: 3276, comm: hotplug Tainted: G      D W    3.4.0-rc2+ #20 To Be Filled By O.E.M. To Be Filled By O.
[  431.768288] RIP: 0010:[<ffffffff812f6628>]  [<ffffffff812f6628>] pci_bus_add_devices+0x128/0x130
[  431.768300] RSP: 0018:ffff880037aabe08  EFLAGS: 00010246
[  431.768306] RAX: 0000000000000047 RBX: ffff88003cac4800 RCX: 0000000000000001
[  431.768312] RDX: ffffffff81037f09 RSI: 0000000000000001 RDI: ffff88003cbf4c00
[  431.768319] RBP: ffff880037aabe28 R08: 0000000000000001 R09: 0000000000000000
[  431.768325] R10: 0000000000000000 R11: 0000000000000001 R12: ffff88003cbf4428
[  431.768332] R13: ffff88003cbf4c00 R14: ffff88003cbf4428 R15: ffff88003cbf4428
[  431.768339] FS:  00007f4c8d018720(0000) GS:ffff88003d800000(0000) knlGS:0000000000000000
[  431.768345] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
[  431.768351] CR2: 000000000046f0e0 CR3: 000000003052b000 CR4: 00000000000007e0
[  431.768357] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  431.768364] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
[  431.768370] Process hotplug (pid: 3276, threadinfo ffff880037aaa000, task ffff88003aae0000)
[  431.768376] Stack:
[  431.768380]  ffff880037aabe28 ffff88003cbf4400 ffff880037aabe38 0000000000000005
[  431.768394]  ffff880037aabe78 ffffffff81757bf7 ffff880037aabe38 ffff880037aabe38
[  431.768407]  0000000000000000 0000000000000002 ffff88003064b2a0 ffff88002fabac80
[  431.768421] Call Trace:
[  431.768431]  [<ffffffff81757bf7>] pci_rescan_bus+0xa7/0xc0
[  431.768442]  [<ffffffffa000e066>] legacy_store+0x66/0x80 [fakephp]
[  431.768452]  [<ffffffff811a517e>] ? sysfs_write_file+0xde/0x180
[  431.768462]  [<ffffffff811a5197>] sysfs_write_file+0xf7/0x180
[  431.768472]  [<ffffffff811347e1>] vfs_write+0xb1/0x180
[  431.768481]  [<ffffffff81134b08>] sys_write+0x48/0x90
[  431.768491]  [<ffffffff8178a0e2>] system_call_fastpath+0x16/0x1b
[  431.768496] Code: 8b 43 10 48 c7 c7 c0 fe c4 81 48 8b 50 
[  431.768537] i915 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[  431.768544] 20 4c 89 68 20 48 83 c0 18 49 89 45 00 49 89 55 08 4c 89 2a e8 2d 91 d6 ff e9 74 ff ff ff <0f> 0b 90 90 
[  431.768623] RIP  [<ffffffff812f6628>] pci_bus_add_devices+0x128/0x130
[  431.768633]  RSP <ffff880037aabe08>
[  431.768640] ---[ end trace f99f468d766f03f9 ]---


[  266.858024] Pid: 864, comm: kworker/u:3 Tainted: G        W    3.4.0-rc2+ #20 To Be Filled By O.E.M. To Be Filled B.
[  266.858024] RIP: 0010:[<ffffffff81753e78>]  [<ffffffff81753e78>] klist_put+0x28/0xa0
[  266.858024] RSP: 0018:ffff88003b301c70  EFLAGS: 00010246
[  266.858024] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000001
[  266.858024] RDX: ffffffff81037b65 RSI: 0000000000000001 RDI: 0000000000000000
[  266.858024] RBP: ffff88003b301c90 R08: 0000000000000001 R09: 0000000000000000
[  266.858024] R10: 0000000000000000 R11: 0000000000000001 R12: ffff88003ca60668
[  266.858024] R13: ffff88003c40c828 R14: 0000000000000001 R15: ffffffff811a5220
[  266.858024] FS:  0000000000000000(0000) GS:ffff88003da00000(0000) knlGS:0000000000000000
[  266.858024] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
[  266.858024] CR2: 0000000000000060 CR3: 0000000001c0b000 CR4: 00000000000007e0
[  266.858024] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  266.858024] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
[  266.858024] Process kworker/u:3 (pid: 864, threadinfo ffff88003b300000, task ffff88003ca5df00)
[  266.858024] Stack:
[  266.858024]  ffff88003c429890 ffff88003c40c400 ffff88003c40c828 ffffffff81fa8840
[  266.858024]  ffff88003b301ca0 ffffffff81753f2e ffff88003b301cd0 ffffffff813f4fc9
[  266.858024]  ffff88003b301cd0 ffff88003c429890 ffff88003c40c828 ffff88003c40c828
[  266.858024] Call Trace:
[  266.858024]  [<ffffffff81753f2e>] klist_del+0xe/0x10
[  266.858024]  [<ffffffff813f4fc9>] device_del+0x59/0x1c0
[  266.858024]  [<ffffffff813f5141>] device_unregister+0x11/0x20
[  266.858024]  [<ffffffff812f7f9c>] pci_stop_bus_device+0x8c/0xa0
[  266.858024]  [<ffffffff812f8141>] pci_stop_and_remove_bus_device+0x11/0x20
[  266.858024]  [<ffffffff812fe946>] remove_callback+0x26/0x40
[  266.858024]  [<ffffffff811a5233>] sysfs_schedule_callback_work+0x13/0x80
[  266.858024]  [<ffffffff81053462>] process_one_work+0x192/0x570
[  266.858024]  [<ffffffff810533f6>] ? process_one_work+0x126/0x570
[  266.858024]  [<ffffffff81054e7f>] worker_thread+0x15f/0x350
[  266.858024]  [<ffffffff81054d20>] ? manage_workers.isra.27+0x220/0x220
[  266.858024]  [<ffffffff81059f4d>] kthread+0x9d/0xb0
[  266.858024]  [<ffffffff8178b3d4>] kernel_thread_helper+0x4/0x10
[  266.858024]  [<ffffffff81059eb0>] ? __init_kthread_worker+0x70/0x70
[  266.858024]  [<ffffffff8178b3d0>] ? gs_change+0xb/0xb
[  266.858024] Code: 5d c3 90 55 48 89 e5 48 83 ec 20 4c 89 65 e8 4c 89 75 f8 49 89 fc 48 89 5d e0 4c 89 6d f0 41 89 f 
[  266.858024] RIP  [<ffffffff81753e78>] klist_put+0x28/0xa0
[  266.858024]  RSP <ffff88003b301c70>
[  266.858024] CR2: 0000000000000060
[  266.858458] ---[ end trace 7358104716347b8e ]---


[  266.860122] BUG: unable to handle kernel paging request at fffffffffffffff8
[  266.860137] IP: [<ffffffff8105a41b>] kthread_data+0xb/0x20
[  266.860155] PGD 1c0d067 PUD 1c0e067 PMD 0 
[  266.860170] Oops: 0000 [#2] SMP 
[  266.860183] CPU 2 
[  266.860188] Modules linked in: fakephp r8169
[  266.860201] 
[  266.860210] Pid: 864, comm: kworker/u:3 Tainted: G      D W    3.4.0-rc2+ #20 To Be Filled By O.E.M. To Be Filled B.
[  266.860228] RIP: 0010:[<ffffffff8105a41b>]  [<ffffffff8105a41b>] kthread_data+0xb/0x20
[  266.860244] RSP: 0018:ffff88003b301868  EFLAGS: 00010096
[  266.860251] RAX: 0000000000000000 RBX: 0000000000000002 RCX: 0000000000000002
[  266.860259] RDX: ffffffff81fa9440 RSI: 0000000000000002 RDI: ffff88003ca5df00
[  266.860267] RBP: ffff88003b301868 R08: 0000000000989680 R09: 0000000000000000
[  266.860274] R10: 0000000000000400 R11: 0000000000000003 R12: 0000000000000002
[  266.860283] R13: ffff88003ca5e278 R14: ffff88003c9b8000 R15: ffff88003ca5e180
[  266.860291] FS:  0000000000000000(0000) GS:ffff88003da00000(0000) knlGS:0000000000000000
[  266.860300] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
[  266.860307] CR2: fffffffffffffff8 CR3: 00000000304dc000 CR4: 00000000000007e0
[  266.860315] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  266.860322] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
[  266.860331] Process kworker/u:3 (pid: 864, threadinfo ffff88003b300000, task ffff88003ca5df00)
[  266.860338] Stack:
[  266.860344]  ffff88003b301888 ffffffff81055810 ffff88003b301888 ffff88003dbd2900
[  266.860364]  ffff88003b301908 ffffffff81780878 ffff880000000000 ffffffff810bda82
[  266.860380]  ffff88003b301fd8 ffff88003ca5df00 ffff88003b301fd8 ffff88003b301fd8
[  266.860397] Call Trace:
[  266.860413]  [<ffffffff81055810>] wq_worker_sleeping+0x10/0xa0
[  266.860428]  [<ffffffff81780878>] __schedule+0x538/0x7c0
[  266.860443]  [<ffffffff810bda82>] ? call_rcu_sched+0x12/0x20
[  266.860456]  [<ffffffff81780de4>] schedule+0x24/0x70
[  266.860470]  [<ffffffff8103b8b0>] do_exit+0x600/0x9d0
[  266.860483]  [<ffffffff81039065>] ? kmsg_dump+0x105/0x160
[  266.860496]  [<ffffffff817834ae>] oops_end+0x9e/0xe0
[  266.860507]  [<ffffffff81037f09>] ? vprintk+0x329/0x510
[  266.860520]  [<ffffffff81774c5e>] no_context+0x271/0x280
[  266.860532]  [<ffffffff81774e33>] __bad_area_nosemaphore+0x1c6/0x1e5
[  266.860545]  [<ffffffff81037b65>] ? console_unlock+0x1e5/0x260
[  266.860558]  [<ffffffff81774e60>] bad_area_nosemaphore+0xe/0x10
[  266.860571]  [<ffffffff81785dfe>] do_page_fault+0x30e/0x500
[  266.860586]  [<ffffffff811a8e9f>] ? sysfs_remove_group+0xdf/0xf0
[  266.860598]  [<ffffffff81775339>] ? printk+0x3c/0x3e
[  266.860613]  [<ffffffff811a5220>] ? sysfs_write_file+0x180/0x180
[  266.860626]  [<ffffffff817829bf>] page_fault+0x1f/0x30
[  266.860638]  [<ffffffff811a5220>] ? sysfs_write_file+0x180/0x180
[  266.860652]  [<ffffffff81037b65>] ? console_unlock+0x1e5/0x260
[  266.860664]  [<ffffffff81753e78>] ? klist_put+0x28/0xa0
[  266.860676]  [<ffffffff81753f2e>] klist_del+0xe/0x10
[  266.860690]  [<ffffffff813f4fc9>] device_del+0x59/0x1c0
[  266.860703]  [<ffffffff813f5141>] device_unregister+0x11/0x20
[  266.860716]  [<ffffffff812f7f9c>] pci_stop_bus_device+0x8c/0xa0
[  266.860729]  [<ffffffff812f8141>] pci_stop_and_remove_bus_device+0x11/0x20
[  266.860741]  [<ffffffff812fe946>] remove_callback+0x26/0x40
[  266.860754]  [<ffffffff811a5233>] sysfs_schedule_callback_work+0x13/0x80
[  266.860769]  [<ffffffff81053462>] process_one_work+0x192/0x570
[  266.860781]  [<ffffffff810533f6>] ? process_one_work+0x126/0x570
[  266.860795]  [<ffffffff81054e7f>] worker_thread+0x15f/0x350
[  266.860808]  [<ffffffff81054d20>] ? manage_workers.isra.27+0x220/0x220
[  266.860821]  [<ffffffff81059f4d>] kthread+0x9d/0xb0
[  266.860834]  [<ffffffff8178b3d4>] kernel_thread_helper+0x4/0x10
[  266.860846]  [<ffffffff81059eb0>] ? __init_kthread_worker+0x70/0x70
[  266.860857]  [<ffffffff8178b3d0>] ? gs_change+0xb/0xb
[  266.860863] Code: eb 90 be 57 01 00 00 48 c7 c7 96 17 a1 81 e8 1d cb fd ff e9 77 fe ff ff 0f 1f 84 00 00 00 00 00 4 
[  266.861014] RIP  [<ffffffff8105a41b>] kthread_data+0xb/0x20
[  266.861014]  RSP <ffff88003b301868>
[  266.861014] CR2: fffffffffffffff8
[  266.861014] ---[ end trace 7358104716347b8f ]---
[  266.861014] Fixing recursive fault but reboot is needed!


> 
> And really, fakephp?  Come on, what happens in the "real world" with
> real pci hotplug systems/devices that this patch set is trying to solve?
> 
> thanks,
> 
> greg k-h


      parent reply	other threads:[~2012-04-17 14:53 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-16 16:28 [PATCH RFC 00/17] Introduce a global lock to serialize all PCI hotplug Jiang Liu
2012-04-16 16:28 ` [PATCH RFC 01/17] PCI: introduce pci_bus_get()/pci_bus_put() to hide PCI implementation details Jiang Liu
2012-04-16 16:28 ` [PATCH RFC 02/17] PCI: introduce recursive rwsem to serialize PCI hotplug operations Jiang Liu
2012-04-16 16:28 ` [PATCH RFC 03/17] PCI: replace pci_remove_rescan_mutex with the PCI hotplug lock Jiang Liu
2012-04-16 16:28 ` [PATCH RFC 04/17] PCI: serialize hotplug operations triggered by PCI hotplug sysfs interfaces Jiang Liu
2012-04-16 16:28 ` [PATCH RFC 05/17] PCI: correctly flush workqueue when destroy pcie hotplug controller Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 06/17] PCI: prepare for serializing hotplug operations triggered by pciehp driver Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 07/17] PCI: serialize hotplug operaitons triggered by the " Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 08/17] PCI: fix two race windows when probing/removing SHPC controller Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 09/17] PCI: correctly flush workqueues and timer when destroy " Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 10/17] PCI: serialize hotplug operaitons triggered by the shpchp driver Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 11/17] PCI: release IO resource in error handling path in cpcihp_generic_init() Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 12/17] PCI: clean up all resources in error handling path in zt5550_hc_init_one() Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 13/17] PCI: trivial code clean up in cpci_hotplug_core.c Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 14/17] PCI: fix race windows when shutting down cpcihp controller Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 15/17] PCI: hold a reference count to the PCI bus used by cpcihp drivers Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 16/17] PCI: serialize PCI hotplug operations triggered " Jiang Liu
2012-04-16 16:29 ` [PATCH RFC 17/17] PCI: serialize PCI hotplug operations triggered by fakephp drivers Jiang Liu
2012-04-16 21:33 ` [PATCH RFC 00/17] Introduce a global lock to serialize all PCI hotplug Greg KH
2012-04-17 11:57   ` Jiang Liu
2012-04-17 14:53   ` Jiang Liu [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4F8D83DB.4@gmail.com \
    --to=liuj97@gmail.com \
    --cc=chenkeping@huawei.com \
    --cc=dely.l.sy@intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jiang.liu@huawei.com \
    --cc=kaneshige.kenji@jp.fujitsu.com \
    --cc=linux-pci@vger.kernel.org \
    --cc=scott@spiteful.org \
    --cc=yinghai@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.