The patch titled
     intel_agp: fix stolen mem range on G33
has been removed from the -mm tree.  Its filename was
     intel_agp-fix-stolen-mem-range-on-g33.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: intel_agp: fix stolen mem range on G33
From: Zhenyu Wang <[EMAIL PROTECTED]>

G33 GTT stolen memory is below graphics data stolen memory and be seperate,
so don't subtract it in stolen mem counting.

Signed-off-by: Zhenyu Wang <[EMAIL PROTECTED]>
Acked-by: Dave Airlie <[EMAIL PROTECTED]>
Cc: Dave Jones <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/char/agp/intel-agp.c |    5 +++++
 1 files changed, 5 insertions(+)

diff -puN drivers/char/agp/intel-agp.c~intel_agp-fix-stolen-mem-range-on-g33 
drivers/char/agp/intel-agp.c
--- a/drivers/char/agp/intel-agp.c~intel_agp-fix-stolen-mem-range-on-g33
+++ a/drivers/char/agp/intel-agp.c
@@ -506,6 +506,11 @@ static void intel_i830_init_gtt_entries(
                        break;
                }
        } else {
+               /* G33's GTT stolen memory is separate from gfx data
+                * stolen memory.
+                */
+               if (IS_G33)
+                       size = 0;
                switch (gmch_ctrl & I830_GMCH_GMS_MASK) {
                case I855_GMCH_GMS_STOLEN_1M:
                        gtt_entries = MB(1) - KB(size);
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
intel-agp-fix-i830-mask-variable-that-changed-with-g33-support.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to