packet.cc (4040:eb894f3fc168) | packet.cc (4432:5e55857abb01) |
---|---|
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; --- 71 unchanged lines hidden (view full) --- 80 { SET4(IsRead, IsResponse, IsHWPrefetch, HasData), 81 InvalidCmd, "HardPFResp" }, 82 /* InvalidateReq */ 83 { SET2(IsInvalidate, IsRequest), InvalidCmd, "InvalidateReq" }, 84 /* WriteInvalidateReq */ 85 { SET5(IsWrite, IsInvalidate, IsRequest, HasData, NeedsResponse), 86 WriteInvalidateResp, "WriteInvalidateReq" }, 87 /* WriteInvalidateResp */ | 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; --- 71 unchanged lines hidden (view full) --- 80 { SET4(IsRead, IsResponse, IsHWPrefetch, HasData), 81 InvalidCmd, "HardPFResp" }, 82 /* InvalidateReq */ 83 { SET2(IsInvalidate, IsRequest), InvalidCmd, "InvalidateReq" }, 84 /* WriteInvalidateReq */ 85 { SET5(IsWrite, IsInvalidate, IsRequest, HasData, NeedsResponse), 86 WriteInvalidateResp, "WriteInvalidateReq" }, 87 /* WriteInvalidateResp */ |
88 { SET5(IsWrite, IsInvalidate, IsRequest, NeedsResponse, IsResponse), | 88 { SET3(IsWrite, IsInvalidate, IsResponse), |
89 InvalidCmd, "WriteInvalidateResp" }, 90 /* UpgradeReq */ 91 { SET3(IsInvalidate, IsRequest, IsUpgrade), InvalidCmd, "UpgradeReq" }, 92 /* ReadExReq */ 93 { SET4(IsRead, IsInvalidate, IsRequest, NeedsResponse), 94 ReadExResp, "ReadExReq" }, 95 /* ReadExResp */ 96 { SET4(IsRead, IsInvalidate, IsResponse, HasData), --- 166 unchanged lines hidden --- | 89 InvalidCmd, "WriteInvalidateResp" }, 90 /* UpgradeReq */ 91 { SET3(IsInvalidate, IsRequest, IsUpgrade), InvalidCmd, "UpgradeReq" }, 92 /* ReadExReq */ 93 { SET4(IsRead, IsInvalidate, IsRequest, NeedsResponse), 94 ReadExResp, "ReadExReq" }, 95 /* ReadExResp */ 96 { SET4(IsRead, IsInvalidate, IsResponse, HasData), --- 166 unchanged lines hidden --- |