From patchwork Sat Sep 25 04:27:19 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Xin, Xiaohui" X-Patchwork-Id: 208462 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o8P4Fgsf007554 for ; Sat, 25 Sep 2010 04:15:42 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751417Ab0IYEKo (ORCPT ); Sat, 25 Sep 2010 00:10:44 -0400 Received: from mga02.intel.com ([134.134.136.20]:27792 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750825Ab0IYEKn (ORCPT ); Sat, 25 Sep 2010 00:10:43 -0400 Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 24 Sep 2010 21:10:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.57,233,1283756400"; d="scan'208";a="557826753" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.239.36.37]) by orsmga002.jf.intel.com with ESMTP; 24 Sep 2010 21:10:27 -0700 From: xiaohui.xin@intel.com To: netdev@vger.kernel.org, kvm@vger.kernel.org, linux-kernel@vger.kernel.org, mingo@elte.hu, davem@davemloft.net, herbert@gondor.hengli.com.au, jdike@linux.intel.com Cc: Xin Xiaohui Subject: [PATCH v11 01/17] Add a new structure for skb buffer from external. Date: Sat, 25 Sep 2010 12:27:19 +0800 Message-Id: <59d8a50047ee01e26658fd676d26c0162b79e5fd.1285385607.git.xiaohui.xin@intel.com> X-Mailer: git-send-email 1.7.3 In-Reply-To: <1285388855-27410-1-git-send-email-xiaohui.xin@intel.com> References: <1285388855-27410-1-git-send-email-xiaohui.xin@intel.com> Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Sat, 25 Sep 2010 04:15:42 +0000 (UTC) diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 124f90c..74af06c 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -203,6 +203,15 @@ struct skb_shared_info { void * destructor_arg; }; +/* The structure is for a skb which pages may point to + * an external buffer, which is not allocated from kernel space. + * It also contains a destructor for itself. + */ +struct skb_ext_page { + struct page *page; + void (*dtor)(struct skb_ext_page *); +}; + /* We divide dataref into two halves. The higher 16 bits hold references * to the payload part of skb->data. The lower 16 bits hold references to * the entire skb->data. A clone of a headerless skb holds the length of