Asrock P4V88 and 4 GB barrier – Part 4

Ok, es war auf der FOSDEM und auch nur auf dem O’Reilly Stand dort, aber immerhin weiß Heise.de zu berichten:

In zwanzig Räumen trafen sich die verschiedenen Stämme der Open Source und hielten ihre Unterkonferenzen ab. Dazu im schlauchähnlichen Mittelgang die Tische mit den üblichen Devotionalien und ein Bücherstand vom O’Reilly-Verlag, an dem die komplette Auflage eines Drupal-Buches in einer Stunde ausverkauft war.

Ich nehme mal an, daß es sich um das “Using Drupal” Buch handelt. Was bin ich froh, daß ich bereits ein Exemplar habe… 🙂

Uncategorized

3 thoughts on “Asrock P4V88 and 4 GB barrier – Part 4

  1. from: http://kerneltrap.org/mailarchive/linux-kernel/2008/9/6/3211964

    Sep 6 10:24:36 poppero1 kernel: [ 191.139019] __ratelimit: 253431 callbacks suppressed
    Sep 6 10:24:36 poppero1 kernel: [ 191.139030] [drm:radeon_cp_reset] *ERROR* radeon_cp_reset called without lock held, held 0 owner f726bc80 f68f6840
    Sep 6 10:24:36 poppero1 kernel: [ 191.139314] [drm:radeon_cp_start] *ERROR* radeon_cp_start called without lock held, held 0 owner f726bc80 f68f6840

    Also if it doesn't solve a bug I think it may still be worth applying it.
    Patch is against current git.

    Signed-off-by: Roberto Oppedisano

    diff –git a/include/drm/drmP.h b/include/drm/drmP.h
    index 1c1b13e..1107361 100644
    — a/include/drm/drmP.h
    +++ b/include/drm/drmP.h
    @@ -162,7 +162,8 @@ struct drm_device;
    * param arg arguments
    */
    #define DRM_ERROR(fmt, arg…)
    – printk(KERN_ERR “[” DRM_NAME “:%s] *ERROR* ” fmt , __func__ , ##arg)
    + if (printk_ratelimit())
    + printk(KERN_ERR “[” DRM_NAME “:%s] *ERROR* ” fmt , __func__ , ##arg)

    /**
    * Memory error output.

    and others …….
    night

Comments are closed.