From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756132Ab3LDXMV (ORCPT ); Wed, 4 Dec 2013 18:12:21 -0500 Received: from mail-qe0-f44.google.com ([209.85.128.44]:45565 "EHLO mail-qe0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753361Ab3LDXMR (ORCPT ); Wed, 4 Dec 2013 18:12:17 -0500 Date: Wed, 4 Dec 2013 18:12:12 -0500 From: Tejun Heo To: Josh Hunt Cc: Linus Torvalds , Jonathan Nieder , Ming Lei , Alex Riesen , Alan Stern , Jens Axboe , USB list , Linux Kernel Mailing List , Arjan van de Ven , Rusty Russell Subject: Re: [3.8-rc3 -> 3.8-rc4 regression] Re: [PATCH] module, async: async_synchronize_full() on module init iff async is used Message-ID: <20131204231212.GB10785@mtj.dyndns.org> References: <20130116025251.GM2668@htj.dyndns.org> <20130812070411.GA2878@elie.Belkin> <20130812150900.GJ15892@htj.dyndns.org> <20131126222945.GC8588@mtj.dyndns.org> <20131203151953.GK8277@htj.dyndns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, Josh. On Wed, Dec 04, 2013 at 05:01:53PM -0600, Josh Hunt wrote: > So there used to be a call to async_synchronize_full() in > ata_host_register(), but it was removed by > f29d3b23238e1955a8094e038c72546e99308e61 as part of some fastboot > changes. Adding it back (in the attached patch) seems to resolve the > issue when using the broken initrd. I'm guessing adding it back isn't > an option, but I wanted to point it out. The problem is that really isn't the root cause of it. There's no real interlocking there and the problem gets hidden just because things are slower. Putting ssleep(2) there would work the same, so the true issue is "the kernel is faster with probing now", which is somewhat challenging to rectify. :( Thanks. -- tejun