From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 14C0BA04C7; Wed, 16 Sep 2020 03:54:22 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D15B31BEA1; Wed, 16 Sep 2020 03:54:20 +0200 (CEST) Received: from mail-pj1-f65.google.com (mail-pj1-f65.google.com [209.85.216.65]) by dpdk.org (Postfix) with ESMTP id 7CEC6E07 for ; Wed, 16 Sep 2020 03:54:19 +0200 (CEST) Received: by mail-pj1-f65.google.com with SMTP id gf14so708454pjb.5 for ; Tue, 15 Sep 2020 18:54:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=RmKgkv6uyp2qetRv9Hbg6hMw3yP5XxAW3HIAigSO6jo=; b=F9cv7ioI6tXoXgshiyQnlxEVtm1p5tmU/juPJlbQyHjUynii9Uywm1fIWLHbkA6LQr mWeZLh3xaNS5C7TDe6MxQAxCMLBsOwVkdpRuZtw4V1ZLJXVfvixcNljvT8veTTYUqIgj aKMSEw94VplEx06wLhueexZaH5mleiLE6QBnuTBzIUjiuzXBPSa+xPeQThXvj8wVZwJ/ TiC9fUnddthrh3JtszSY0ABGks45xxGXMqzFfxAoD0JlzfU0z7ry9OaWt1iuieQfJVUW 2JR6DN0mHtmmUgnx9OUOlKxF8JCdEKhjQ3isDl2MkMLrK8bJxgp+Kby8ccDXRiBvloqm L0Sw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=RmKgkv6uyp2qetRv9Hbg6hMw3yP5XxAW3HIAigSO6jo=; b=NHPhspyALm6O+6HemdRAsN1cbd7bDunxtgXXm+uhJ8HP/iIFLBbVCXSnt420NR5Cgp wKjrsPE3xYnBtwyU6GAn+Rz0C6PKwhIQRrv9omslXr7X6vUL3t9hszdCvs9NNxDZqiII LMVxFZuWeVlvqN18h5fz7cPQ+tSSKV1qNU1yUePmvZkbxAvT9Ou8PaobBtR8dpC8ccMn CFed2e0ffZzZk5O3HkWY8YOnV2B2as6FPtKnFmYKd6Ydm1eA0nrFCmxlrAPDwuznkXIm dbY0dEqgG7L4M9mmxzHjCGMVCXkmX4SCkn9Wtw/0kFwz6foA1qGGfxIiThACmY7BSVCG ezzw== X-Gm-Message-State: AOAM530agGiSnzedA0x0UKI0WZw2gX7ZEOGR70IiZhJAxvLeNtp7awtg +dp+egDJaZs76Bp24oCr7VBsXA== X-Google-Smtp-Source: ABdhPJzsyRy2xQUyDjOfA6xcv8+Arx33YPFxiYFl5uran/+buqZsC2E2cPTFEdN+BEhiimI0TUtM4A== X-Received: by 2002:a17:90b:2388:: with SMTP id mr8mr1811665pjb.161.1600221258371; Tue, 15 Sep 2020 18:54:18 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id x185sm14889660pfc.188.2020.09.15.18.54.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 15 Sep 2020 18:54:17 -0700 (PDT) Date: Tue, 15 Sep 2020 18:54:09 -0700 From: Stephen Hemminger To: Pallavi Kadam Cc: dev@dpdk.org, thomas@monjalon.net, ranjit.menon@intel.com, John.Alexander@datapath.co.uk, dmitry.kozliuk@gmail.com, Narcisa.Vasile@microsoft.com, talshn@nvidia.com Message-ID: <20200915185409.7af0f626@hermes.lan> In-Reply-To: <20200915232803.880-1-pallavi.kadam@intel.com> References: <20200911015947.20044-1-pallavi.kadam@intel.com> <20200915232803.880-1-pallavi.kadam@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2] bus/pci: netuio interface for windows X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, 15 Sep 2020 16:28:03 -0700 Pallavi Kadam wrote: > + if (IsEqualGUID((const void *)&(device_info_data->ClassGuid), > + (const void *)&GUID_DEVCLASS_NETUIO)) Is there anyway to get rid of casts and have the right types? Casts are evil