Deleted Added
sdiff udiff text old ( 6076:e141cc7896ce ) new ( 7465:f97b62be544f )
full compact
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the

--- 76 unchanged lines hidden (view full) ---

87 /* WriteInvalidateReq */
88 { SET6(IsWrite, NeedsExclusive, IsInvalidate,
89 IsRequest, HasData, NeedsResponse),
90 WriteInvalidateResp, "WriteInvalidateReq" },
91 /* WriteInvalidateResp */
92 { SET3(IsWrite, NeedsExclusive, IsResponse),
93 InvalidCmd, "WriteInvalidateResp" },
94 /* UpgradeReq */
95 { SET4(IsInvalidate, NeedsExclusive, IsRequest, NeedsResponse),
96 UpgradeResp, "UpgradeReq" },
97 /* UpgradeResp */
98 { SET2(NeedsExclusive, IsResponse),
99 InvalidCmd, "UpgradeResp" },
100 /* ReadExReq */
101 { SET5(IsRead, NeedsExclusive, IsInvalidate, IsRequest, NeedsResponse),
102 ReadExResp, "ReadExReq" },
103 /* ReadExResp */
104 { SET4(IsRead, NeedsExclusive, IsResponse, HasData),
105 InvalidCmd, "ReadExResp" },
106 /* LoadLockedReq: note that we use plain ReadResp as response, so that
107 * we can also use ReadRespWithInvalidate when needed */

--- 157 unchanged lines hidden ---