2021-06-17 19:55:28 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
struct MiFlushArgs {
|
|
|
|
bool timeStampOperation = false;
|
|
|
|
bool commandWithPostSync = false;
|
|
|
|
bool notifyEnable = false;
|
2021-07-29 14:40:42 +08:00
|
|
|
bool tlbFlush = false;
|
2021-06-17 19:55:28 +08:00
|
|
|
|
|
|
|
MiFlushArgs() = default;
|
|
|
|
};
|
|
|
|
} // namespace NEO
|