Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933412AbZGPVZo (ORCPT ); Thu, 16 Jul 2009 17:25:44 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S933395AbZGPVZn (ORCPT ); Thu, 16 Jul 2009 17:25:43 -0400 Received: from e24smtp01.br.ibm.com ([32.104.18.85]:41759 "EHLO e24smtp01.br.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933391AbZGPVZn (ORCPT ); Thu, 16 Jul 2009 17:25:43 -0400 Subject: Re: [PATCH] TPM: DATA_EXPECT bit check bypass From: Rajiv Andrade To: Valdis.Kletnieks@vt.edu Cc: Alan Cox , Andy Isaacson , linux-kernel@vger.kernel.org, tpmdd-devel@lists.sourceforge.net, adi@hexapodia.org, dds@google.com, Mimi Zohar , Shahbaz Khan , seiji.munetoh@gmail.com In-Reply-To: <49514.1247774890@turing-police.cc.vt.edu> References: <1246410255-6839-1-git-send-email-adi@vmware.com> <1246410255-6839-6-git-send-email-adi@vmware.com> <20090701110136.576a1d14@lxorguk.ukuu.org.uk> <1246455920.9140.28.camel@blackbox> <1247765210.30736.3.camel@dyn531421.br.ibm.com> <1247766212.30736.17.camel@dyn531421.br.ibm.com> <49514.1247774890@turing-police.cc.vt.edu> Content-Type: text/plain Date: Thu, 16 Jul 2009 18:20:26 -0300 Message-Id: <1247779226.3062.44.camel@dyn531421.br.ibm.com> Mime-Version: 1.0 X-Mailer: Evolution 2.26.2 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 894 Lines: 27 On Thu, 2009-07-16 at 16:08 -0400, Valdis.Kletnieks@vt.edu wrote: > On Thu, 16 Jul 2009 14:43:32 -0300, Rajiv Andrade said: > > > @@ -582,6 +585,12 @@ static int tpm_tis_init(struct device *dev, resource_siz > e_t start, > > tpm_get_timeouts(chip); > > tpm_continue_selftest(chip); > > > > + for (i=0; i < 8; i++) > > + if (ITPM_ID[i] != to_pnp_dev(dev)->id->id[i]) > > + break; > > + if (i == 8) > > + chip->is_itpm = 1; > > + > > strcmp() variant of some sort instead? Wait, is to_pnp_dev(dev)->id->id[i] null terminated? Maybe memcmp() fits better here.. Rajiv -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/