[kernel] r15233 - dists/etch-security/linux-2.6/debian/patches/bugfix/all

Dann Frazier dannf at alioth.debian.org
Fri Feb 19 20:05:49 UTC 2010


Author: dannf
Date: Fri Feb 19 20:05:42 2010
New Revision: 15233

Log:
Use bool instead of boolean_t, which wasn't available in 2.6.18.

Modified:
   dists/etch-security/linux-2.6/debian/patches/bugfix/all/e1000-enhance-frame-fragment-detection.patch

Modified: dists/etch-security/linux-2.6/debian/patches/bugfix/all/e1000-enhance-frame-fragment-detection.patch
==============================================================================
--- dists/etch-security/linux-2.6/debian/patches/bugfix/all/e1000-enhance-frame-fragment-detection.patch	Fri Feb 19 19:28:33 2010	(r15232)
+++ dists/etch-security/linux-2.6/debian/patches/bugfix/all/e1000-enhance-frame-fragment-detection.patch	Fri Feb 19 20:05:42 2010	(r15233)
@@ -18,7 +18,7 @@
  	boolean_t smart_power_down;	/* phy smart power down */
  	unsigned long flags;
 +
-+	bool discarding;
++	boolean_t discarding;
  };
  
  enum e1000_state_t {
@@ -38,7 +38,7 @@
 +		 * definition only a frame fragment
 +		 */
 +		if (unlikely(!(status & E1000_RXD_STAT_EOP)))
-+			adapter->discarding = true;
++			adapter->discarding = TRUE;
 +
 +		if (adapter->discarding) {
  			/* All receives must fit into a single buffer */
@@ -47,7 +47,7 @@
  			/* recycle */
  			buffer_info-> skb = skb;
 +			if (status & E1000_RXD_STAT_EOP)
-+				adapter->discarding = false;
++				adapter->discarding = FALSE;
  			goto next_desc;
  		}
  



More information about the Kernel-svn-changes mailing list