From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-out1.informatik.tu-muenchen.de (mail-out1.informatik.tu-muenchen.de [131.159.0.8]) by dpdk.org (Postfix) with ESMTP id 4122F2C7A for ; Mon, 15 Feb 2016 17:55:37 +0100 (CET) Received: from [127.0.0.1] (localhost [127.0.0.1]) by mail.net.in.tum.de (Postfix) with ESMTPSA id BC22B282F03B; Mon, 15 Feb 2016 17:55:36 +0100 (CET) From: Paul Emmerich To: dev@dpdk.org Date: Mon, 15 Feb 2016 17:55:22 +0100 Message-Id: <1455555325-20046-1-git-send-email-emmericp@net.in.tum.de> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH 0/3] add flag to disable CRC checksum offloading X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Feb 2016 16:55:37 -0000 This patch adds a new tx checksum offloading flag: PKT_TX_NO_CRC_CSUM. This allows disabling CRC checksum offloading on a per-packet basis. Doing this can be useful if you want to send out invalid packets on purpose, e.g. in a packet generator/test framework. Paul Emmerich (3): add tx crc disable flag ixgbe: use crc checksum disable flag i40e: use crc checksum disable flag