From patchwork Tue Oct 25 00:36:33 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?TWljaGHFgiBNaXJvc8WCYXc=?= X-Patchwork-Id: 121466 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id E1F4CB6F87 for ; Tue, 25 Oct 2011 11:36:56 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756165Ab1JYAgw (ORCPT ); Mon, 24 Oct 2011 20:36:52 -0400 Received: from rere.qmqm.pl ([89.167.52.164]:45094 "EHLO rere.qmqm.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756130Ab1JYAgi (ORCPT ); Mon, 24 Oct 2011 20:36:38 -0400 Received: by rere.qmqm.pl (Postfix, from userid 1000) id 248E113A76; Tue, 25 Oct 2011 02:36:33 +0200 (CEST) Message-Id: In-Reply-To: References: From: =?UTF-8?q?Micha=C5=82=20Miros=C5=82aw?= Subject: [PATCH v4 8/9] net: extend netdev_features_t to 64 bits MIME-Version: 1.0 To: netdev@vger.kernel.org Cc: "David S. Miller" , Ben Hutchings Date: Tue, 25 Oct 2011 02:36:33 +0200 (CEST) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Signed-off-by: Michał Mirosław --- include/linux/netdev_features.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/linux/netdev_features.h b/include/linux/netdev_features.h index 04ac8f8..20e3a1f 100644 --- a/include/linux/netdev_features.h +++ b/include/linux/netdev_features.h @@ -12,7 +12,7 @@ #include -typedef u32 netdev_features_t; +typedef u64 netdev_features_t; enum { NETIF_F_SG_BIT, /* Scatter/gather IO. */