From patchwork Tue Feb 10 20:26:23 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Ebbert X-Patchwork-Id: 22886 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.176.167]) by ozlabs.org (Postfix) with ESMTP id 43C7BDDDA2 for ; Wed, 11 Feb 2009 07:29:26 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755590AbZBJU2z (ORCPT ); Tue, 10 Feb 2009 15:28:55 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755370AbZBJU2z (ORCPT ); Tue, 10 Feb 2009 15:28:55 -0500 Received: from mx2.redhat.com ([66.187.237.31]:58422 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755122AbZBJU2y (ORCPT ); Tue, 10 Feb 2009 15:28:54 -0500 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n1AKSpvK005196; Tue, 10 Feb 2009 15:28:51 -0500 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n1AKSpjN025046; Tue, 10 Feb 2009 15:28:52 -0500 Received: from dhcp-100-2-144.bos.redhat.com (dhcp-100-2-144.bos.redhat.com [10.16.2.144]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n1AKSpeu013191; Tue, 10 Feb 2009 15:28:51 -0500 Date: Tue, 10 Feb 2009 15:26:23 -0500 From: Chuck Ebbert To: Patrick McHardy Cc: netdev@vger.kernel.org Subject: [patch] pkt_sched: type should be __u32 in header Message-ID: <20090210152623.79149e13@dhcp-100-2-144.bos.redhat.com> Organization: Red Hat, Inc. Mime-Version: 1.0 X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Using u32 in this header breaks the build of iptables. Signed-off-by: Chuck Ebbert --- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: linux-2.6.28.noarch/include/linux/pkt_sched.h =================================================================== --- linux-2.6.28.noarch.orig/include/linux/pkt_sched.h +++ linux-2.6.28.noarch/include/linux/pkt_sched.h @@ -515,7 +515,7 @@ enum struct tc_drr_stats { - u32 deficit; + __u32 deficit; }; #endif