From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f68.google.com (mail-pa0-f68.google.com [209.85.220.68]) by dpdk.org (Postfix) with ESMTP id 84CBB3239 for ; Tue, 23 Aug 2016 12:28:02 +0200 (CEST) Received: by mail-pa0-f68.google.com with SMTP id ez1so9705223pab.3 for ; Tue, 23 Aug 2016 03:28:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=references:user-agent:from:to:cc:subject:in-reply-to:date :message-id:mime-version; bh=VeKQGfUYgDDRDbJrII1b11qF408HOuF9HfUx2/JCYFE=; b=KY3ZRR/LsmfOF4udMWAxoSu9TZjQK8o2KBBQ+JgtGIU1XawCQNuf6FmsxU7iKzPqZK lwe2pSDtufdBQlbpbj9dF/Vi+99JSGYQrP44Ihf+IV3a2bMkMDIb1E0sioafOCsRjdUh vKUhjijRq4sO2CNwhIALV+8M611o/i7Ab4qHxXnfN6x9CWhSWB8/axX5lwVXCfIZPB2g qif4kcYYDaEr9+vOI2LcPUY7JhjRk0DvhTawOrZK3BAGlANyhJKmXaD0j696JSJ3ZFtU ycFj3eSITs3zLvk6NB8gvjdQHFsxsnp2FlfuXIiy7uODPZQ0fPf/oVQZ1l78MnusopPP 6Jaw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:references:user-agent:from:to:cc:subject :in-reply-to:date:message-id:mime-version; bh=VeKQGfUYgDDRDbJrII1b11qF408HOuF9HfUx2/JCYFE=; b=Ez4fRJwelHULspjDFzuEZyGhJAu+A+xpNqFFoKf/YO0nzo92aCSmgO5MOn7LpnPBAT 28kg2+hdEBObio2OYZFE8gcdvDe8/z8/RgJuyZ6ZFDrWX4wFiCaJJnGCFuguZExnrp/P 9q7d7f7kXui5b/AL5TQzfRpetEhbpoNzknQ5XjKK5Vb0EASYL76qm1dflHw4/5e8EB8i 1GbyLW9SjbRhIFKeTu0dLC5nMucYGrAjsFhYpMTrsltCbN3Z7/7jD5YBNe5J7gL4lOEQ yy9UBnJbfhyKMSTYNB2slRm6MKEZ3iTjme8PnASPfeDfJJomyUaI9ujR/UREd7UN5Koa vprg== X-Gm-Message-State: AEkoouv5xLV+2xogJtlvbbdbwKRVVzL+6Sbyapa4i8B4p8B77LTje6iD99S0I9fq+9bvqA== X-Received: by 10.66.0.202 with SMTP id 10mr52440679pag.129.1471948081705; Tue, 23 Aug 2016 03:28:01 -0700 (PDT) Received: from localhost ([14.141.235.254]) by smtp.gmail.com with ESMTPSA id f6sm4493354pfa.17.2016.08.23.03.28.00 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 23 Aug 2016 03:28:00 -0700 (PDT) References: User-agent: mu4e 0.9.16; emacs 24.5.1 From: anupam kapoor To: Kapil Adhikesavalu Cc: users@dpdk.org In-reply-to: Date: Tue, 23 Aug 2016 15:57:57 +0530 Message-ID: <87poozixua.fsf@fatcat.parallelwireless> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [dpdk-users] DPDK port interrupt based link state notification X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Aug 2016 10:28:03 -0000 >>>>> [2016-08-23T14:39:03+0530]: "Kapil Adhikesavalu" (kapil-adhikesavalu): ,----[ kapil-adhikesavalu ] | How can i use this application along with openvswitch; should i write some | code within ovs to register for ISR ? or is there a another way i can run | this as a separate application without modifying ovs. `---- each dpdk application would need to manage this on it's own. concretely, for dpdk enabled ovs, you would need to implement link-state-notification handlers via canonical 'rte_eth_dev_callback_register(...)' for each of the dpdk ports that ovs uses. --- thanks anupam