Mem: Fill out the comment that describes the LOCKED request flag.
authorGabe Black <gblack@eecs.umich.edu>
Mon, 20 Apr 2009 05:00:24 +0000 (22:00 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Mon, 20 Apr 2009 05:00:24 +0000 (22:00 -0700)
src/mem/request.hh

index 64f6ad05369cd8f9d014aeb2979e14e646f53ac8..8809b0bd16b085f99a5583e542aa4126bed4dcc7 100644 (file)
@@ -75,7 +75,12 @@ class Request : public FastAlloc
     static const FlagsType NO_FAULT                    = 0x00002000;
     /** The request should not cause a memory access. */
     static const FlagsType NO_ACCESS                   = 0x00004000;
-    /** This request will lock or unlock the accessed memory. */
+    /** This request will lock or unlock the accessed memory. When used with
+     * a load, the access locks the particular chunk of memory. When used
+     * with a store, it unlocks. The rule is that locked accesses have to be
+     * made up of a locked load, some operation on the data, and then a locked
+     * store.
+     */
     static const FlagsType LOCKED                      = 0x00008000;
     /** The request should be prefetched into the exclusive state. */
     static const FlagsType PF_EXCLUSIVE                = 0x00010000;