SWDEV-485866 - Return OOM if stream creation fails due to insufficient memory.
Change-Id: I4e57ecc81921bde274bb6a4e0890f0fc6a17955a
Этот коммит содержится в:
коммит произвёл
Jaydeepkumar Patel
родитель
b977101893
Коммит
5ccc140e1b
@@ -36,6 +36,10 @@ hip::Stream* Device::NullStream(bool wait) {
|
||||
amd::ScopedLock lock(lock_);
|
||||
if (null_stream_ == nullptr) {
|
||||
null_stream_ = new Stream(this, Stream::Priority::Normal, 0, true);
|
||||
// Stream creation might be failed from rcor and in that case, vdev is null.
|
||||
if (null_stream_->vdev() == nullptr) {
|
||||
Stream::Destroy(null_stream_);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (null_stream_ == nullptr) {
|
||||
|
||||
Ссылка в новой задаче
Block a user