summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvmap.cpp13
-rw-r--r--src/core/hle/service/nvdrv/devices/nvmap.h2
2 files changed, 11 insertions, 4 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvmap.cpp b/src/core/hle/service/nvdrv/devices/nvmap.cpp
index 23fe98190..2fc7c87e0 100644
--- a/src/core/hle/service/nvdrv/devices/nvmap.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvmap.cpp
@@ -148,6 +148,7 @@ u32 nvmap::IocParam(const std::vector<u8>& input, std::vector<u8>& output) {
148} 148}
149 149
150u32 nvmap::IocFree(const std::vector<u8>& input, std::vector<u8>& output) { 150u32 nvmap::IocFree(const std::vector<u8>& input, std::vector<u8>& output) {
151 // TODO(Subv): These flags are unconfirmed.
151 enum FreeFlags { 152 enum FreeFlags {
152 Freed = 0, 153 Freed = 0,
153 NotFreedYet = 1, 154 NotFreedYet = 1,
@@ -161,15 +162,21 @@ u32 nvmap::IocFree(const std::vector<u8>& input, std::vector<u8>& output) {
161 auto itr = handles.find(params.handle); 162 auto itr = handles.find(params.handle);
162 ASSERT(itr != handles.end()); 163 ASSERT(itr != handles.end());
163 164
165 ASSERT(itr->second->refcount > 0);
166
164 itr->second->refcount--; 167 itr->second->refcount--;
165 168
166 params.refcount = itr->second->refcount;
167 params.size = itr->second->size; 169 params.size = itr->second->size;
168 170
169 if (itr->second->refcount == 0) 171 if (itr->second->refcount == 0) {
170 params.flags = Freed; 172 params.flags = Freed;
171 else 173 // The address of the nvmap is written to the output if we're finally freeing it, otherwise
174 // 0 is written.
175 params.address = itr->second->addr;
176 } else {
172 params.flags = NotFreedYet; 177 params.flags = NotFreedYet;
178 params.address = 0;
179 }
173 180
174 handles.erase(params.handle); 181 handles.erase(params.handle);
175 182
diff --git a/src/core/hle/service/nvdrv/devices/nvmap.h b/src/core/hle/service/nvdrv/devices/nvmap.h
index 39fafaa7c..f2eec6409 100644
--- a/src/core/hle/service/nvdrv/devices/nvmap.h
+++ b/src/core/hle/service/nvdrv/devices/nvmap.h
@@ -94,7 +94,7 @@ private:
94 struct IocFreeParams { 94 struct IocFreeParams {
95 u32_le handle; 95 u32_le handle;
96 INSERT_PADDING_BYTES(4); 96 INSERT_PADDING_BYTES(4);
97 u64_le refcount; 97 u64_le address;
98 u32_le size; 98 u32_le size;
99 u32_le flags; 99 u32_le flags;
100 }; 100 };