From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yb0-x230.google.com (mail-yb0-x230.google.com [IPv6:2607:f8b0:4002:c09::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id A320A2095D225 for ; Tue, 27 Jun 2017 06:51:18 -0700 (PDT) Received: by mail-yb0-x230.google.com with SMTP id 84so9513074ybe.0 for ; Tue, 27 Jun 2017 06:52:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=3jpX+WybYBto8feXsgJWxJvEQ4ZlxxXoy79eS/nodg4=; b=LWN2XZN5OF0pmQRwxmAXMfisH0GLe6FcJNDc0silaZxfGF2h1mlHzSqZfaHCjo6zii DLvtz4QgMs5Z/pDFLfGp0bIacmlaOo6lz6c8/x3EhSz3iLG1c+H4pRvtwQIHW4sNmtex pERehycILdumQnO8ZG4TNMjrFMEdXGjnlSjri6+sOwPrPdaA9O1A9gpPfdptk1e5nqAY zhdOxI5gHdlLXpzBYVVkuig4xi51JZKD41U3j7P8NNrlBbUfm6JCyjzNF8EYihSZWpQz ZZCT6HRRr00qr9zc65jUTdxCIWHeEKCVjbsShc8ZZ1McneChIMW4FQKldUl+rjQI5/B2 kV0g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=3jpX+WybYBto8feXsgJWxJvEQ4ZlxxXoy79eS/nodg4=; b=oyCWNXuv81aD6zJTBP4WNFvrQ/eAgUDuvc7t1DcvB0KQ3Uk+21QjSDJPsVety+j1W7 A5dKnyz+ls59F6Wrq824il6PrgG2YXaHnnzvwyq57Tg9Ko3XM9mWRQW0Wd2Y0SEAyWCy aXGI8MnU+h/ILhVlTGQrti5NsmZ7aTJ4J3fV3tM//s2sHoLz6fLicsYasA+XG5BXoe8F Pk1VAQSWXYf5eeyK52yV+fOOL6WEkqKJujBGzuRN3LZmLQU5lnZdjbP1tGc8FhNTdNWe +jA3mw6s5MB9/cqniVeQ0BDXN9+Yf8CcDk/UIcVm9YiBxL15oIuher9T1QVPOmOc/MuL 6nrg== X-Gm-Message-State: AKS2vOxC+O2mYrzj7T2Hk4rQx/Ym10Rrx3tIUFr4ot3EXfR3ZXlEk8Bi IgNsRTdiyyuutnNTcweGbOpo4rBbwg== X-Received: by 10.37.88.193 with SMTP id m184mr3855048ybb.39.1498571567660; Tue, 27 Jun 2017 06:52:47 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.209.86 with HTTP; Tue, 27 Jun 2017 06:52:27 -0700 (PDT) In-Reply-To: References: From: TVKR Date: Tue, 27 Jun 2017 08:52:27 -0500 Message-ID: To: edk2-devel@lists.01.org X-Content-Filtered-By: Mailman/MimeDel 2.1.22 Subject: Re: DXE core - Connecting a controller to driver X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2017 13:51:19 -0000 Content-Type: text/plain; charset="UTF-8" Hello experts!! Any thoughts on this? Thanks On Mon, Jun 26, 2017 at 11:30 AM, TVKR wrote: > Hi experts, > > I have a question related to the ConnectController implementation in the > edk2 codebase (MdeModulePkg\Core\Dxe\Hand\DriverSupport.c). Under the > CoreConnectSingleController function, what if DriverBinding->Supported > returns an error? I see that there is a do/while loop waiting for > DriverFound to be set to TRUE, but it looks like this wont happen if > DriverBinding->Supported returns an error (looping for ever). Am I reading > this wrong? > > Thanks >