lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Mon, 28 Jul 2014 07:34:26 -0700 From: "Luis R. Rodriguez" <mcgrof@...not-panic.com> To: gregkh@...uxfoundation.org Cc: linux-kernel@...r.kernel.org, "Luis R. Rodriguez" <mcgrof@...e.com>, Tetsuo Handa <penguin-kernel@...ove.SAKURA.ne.jp>, Joseph Salisbury <joseph.salisbury@...onical.com>, One Thousand Gnomes <gnomes@...rguk.ukuu.org.uk>, Tim Gardner <tim.gardner@...onical.com>, Pierre Fersing <pierre-fersing@...rref.org>, Andrew Morton <akpm@...ux-foundation.org>, Oleg Nesterov <oleg@...hat.com>, Benjamin Poirier <bpoirier@...e.de>, Nagalakshmi Nandigama <nagalakshmi.nandigama@...gotech.com>, Praveen Krishnamoorthy <praveen.krishnamoorthy@...gotech.com>, Sreekanth Reddy <sreekanth.reddy@...gotech.com>, Abhijit Mahajan <abhijit.mahajan@...gotech.com>, Hariprasad S <hariprasad@...lsio.com>, Santosh Rastapur <santosh@...lsio.com>, MPT-FusionLinux.pdl@...gotech.com, linux-scsi@...r.kernel.org, netdev@...r.kernel.org Subject: [PATCH 2/3] cxgb4: ask for deferred probe From: "Luis R. Rodriguez" <mcgrof@...e.com> cxgb4 probe can take up to over 1 minute when the firmware is is written and installed on the device. Use the new delayed probe preference so that cxgb4 gets probed on the deferred workqueue. Without this devices that require the update on firmware will fail on probe. Cc: Tetsuo Handa <penguin-kernel@...ove.SAKURA.ne.jp> Cc: Joseph Salisbury <joseph.salisbury@...onical.com> Cc: One Thousand Gnomes <gnomes@...rguk.ukuu.org.uk> Cc: Tim Gardner <tim.gardner@...onical.com> Cc: Pierre Fersing <pierre-fersing@...rref.org> Cc: Andrew Morton <akpm@...ux-foundation.org> Cc: Oleg Nesterov <oleg@...hat.com> Cc: Benjamin Poirier <bpoirier@...e.de> Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org> Cc: Nagalakshmi Nandigama <nagalakshmi.nandigama@...gotech.com> Cc: Praveen Krishnamoorthy <praveen.krishnamoorthy@...gotech.com> Cc: Sreekanth Reddy <sreekanth.reddy@...gotech.com> Cc: Abhijit Mahajan <abhijit.mahajan@...gotech.com> Cc: Hariprasad S <hariprasad@...lsio.com> Cc: Santosh Rastapur <santosh@...lsio.com> Cc: MPT-FusionLinux.pdl@...gotech.com Cc: linux-scsi@...r.kernel.org Cc: linux-kernel@...r.kernel.org Cc: netdev@...r.kernel.org Signed-off-by: Luis R. Rodriguez <mcgrof@...e.com> --- drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c index 6b11fde..bb5daaf 100644 --- a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c +++ b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c @@ -6400,6 +6400,9 @@ static void remove_one(struct pci_dev *pdev) } static struct pci_driver cxgb4_driver = { + .driver = { + .delay_probe = true, + }, .name = KBUILD_MODNAME, .id_table = cxgb4_pci_tbl, .probe = init_one, -- 2.0.1 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists