Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
764bbaa1
There was an error fetching the commit references. Please try again later.
Commit
764bbaa1
authored
7 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
logger: Use Service_NVDRV category where applicable.
parent
65cfe09b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/hle/service/nvdrv/devices/nvmap.cpp
+5
-5
5 additions, 5 deletions
src/core/hle/service/nvdrv/devices/nvmap.cpp
src/core/hle/service/nvdrv/interface.cpp
+5
-5
5 additions, 5 deletions
src/core/hle/service/nvdrv/interface.cpp
with
10 additions
and
10 deletions
src/core/hle/service/nvdrv/devices/nvmap.cpp
+
5
−
5
View file @
764bbaa1
...
@@ -52,7 +52,7 @@ u32 nvmap::IocCreate(const std::vector<u8>& input, std::vector<u8>& output) {
...
@@ -52,7 +52,7 @@ u32 nvmap::IocCreate(const std::vector<u8>& input, std::vector<u8>& output) {
u32
handle
=
next_handle
++
;
u32
handle
=
next_handle
++
;
handles
[
handle
]
=
std
::
move
(
object
);
handles
[
handle
]
=
std
::
move
(
object
);
LOG_WARNING
(
Service
,
"(STUBBED) size 0x%08X"
,
params
.
size
);
LOG_WARNING
(
Service
_NVDRV
,
"(STUBBED) size 0x%08X"
,
params
.
size
);
params
.
handle
=
handle
;
params
.
handle
=
handle
;
...
@@ -74,7 +74,7 @@ u32 nvmap::IocAlloc(const std::vector<u8>& input, std::vector<u8>& output) {
...
@@ -74,7 +74,7 @@ u32 nvmap::IocAlloc(const std::vector<u8>& input, std::vector<u8>& output) {
object
->
addr
=
params
.
addr
;
object
->
addr
=
params
.
addr
;
object
->
status
=
Object
::
Status
::
Allocated
;
object
->
status
=
Object
::
Status
::
Allocated
;
LOG_WARNING
(
Service
,
"(STUBBED) Allocated address 0x%llx"
,
params
.
addr
);
LOG_WARNING
(
Service
_NVDRV
,
"(STUBBED) Allocated address 0x%llx"
,
params
.
addr
);
std
::
memcpy
(
output
.
data
(),
&
params
,
sizeof
(
params
));
std
::
memcpy
(
output
.
data
(),
&
params
,
sizeof
(
params
));
return
0
;
return
0
;
...
@@ -84,7 +84,7 @@ u32 nvmap::IocGetId(const std::vector<u8>& input, std::vector<u8>& output) {
...
@@ -84,7 +84,7 @@ u32 nvmap::IocGetId(const std::vector<u8>& input, std::vector<u8>& output) {
IocGetIdParams
params
;
IocGetIdParams
params
;
std
::
memcpy
(
&
params
,
input
.
data
(),
sizeof
(
params
));
std
::
memcpy
(
&
params
,
input
.
data
(),
sizeof
(
params
));
LOG_WARNING
(
Service
,
"called"
);
LOG_WARNING
(
Service
_NVDRV
,
"called"
);
auto
itr
=
handles
.
find
(
params
.
handle
);
auto
itr
=
handles
.
find
(
params
.
handle
);
ASSERT
(
itr
!=
handles
.
end
());
ASSERT
(
itr
!=
handles
.
end
());
...
@@ -99,7 +99,7 @@ u32 nvmap::IocFromId(const std::vector<u8>& input, std::vector<u8>& output) {
...
@@ -99,7 +99,7 @@ u32 nvmap::IocFromId(const std::vector<u8>& input, std::vector<u8>& output) {
IocFromIdParams
params
;
IocFromIdParams
params
;
std
::
memcpy
(
&
params
,
input
.
data
(),
sizeof
(
params
));
std
::
memcpy
(
&
params
,
input
.
data
(),
sizeof
(
params
));
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_NVDRV
,
"(STUBBED) called"
);
auto
itr
=
std
::
find_if
(
handles
.
begin
(),
handles
.
end
(),
auto
itr
=
std
::
find_if
(
handles
.
begin
(),
handles
.
end
(),
[
&
](
const
auto
&
entry
)
{
return
entry
.
second
->
id
==
params
.
id
;
});
[
&
](
const
auto
&
entry
)
{
return
entry
.
second
->
id
==
params
.
id
;
});
...
@@ -121,7 +121,7 @@ u32 nvmap::IocParam(const std::vector<u8>& input, std::vector<u8>& output) {
...
@@ -121,7 +121,7 @@ u32 nvmap::IocParam(const std::vector<u8>& input, std::vector<u8>& output) {
IocParamParams
params
;
IocParamParams
params
;
std
::
memcpy
(
&
params
,
input
.
data
(),
sizeof
(
params
));
std
::
memcpy
(
&
params
,
input
.
data
(),
sizeof
(
params
));
LOG_WARNING
(
Service
,
"(STUBBED) called type=%u"
,
params
.
type
);
LOG_WARNING
(
Service
_NVDRV
,
"(STUBBED) called type=%u"
,
params
.
type
);
auto
itr
=
handles
.
find
(
params
.
handle
);
auto
itr
=
handles
.
find
(
params
.
handle
);
ASSERT
(
itr
!=
handles
.
end
());
ASSERT
(
itr
!=
handles
.
end
());
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/service/nvdrv/interface.cpp
+
5
−
5
View file @
764bbaa1
...
@@ -11,7 +11,7 @@ namespace Service {
...
@@ -11,7 +11,7 @@ namespace Service {
namespace
Nvidia
{
namespace
Nvidia
{
void
NVDRV
::
Open
(
Kernel
::
HLERequestContext
&
ctx
)
{
void
NVDRV
::
Open
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_NVDRV
,
"(STUBBED) called"
);
auto
buffer
=
ctx
.
BufferDescriptorA
()[
0
];
auto
buffer
=
ctx
.
BufferDescriptorA
()[
0
];
...
@@ -25,7 +25,7 @@ void NVDRV::Open(Kernel::HLERequestContext& ctx) {
...
@@ -25,7 +25,7 @@ void NVDRV::Open(Kernel::HLERequestContext& ctx) {
}
}
void
NVDRV
::
Ioctl
(
Kernel
::
HLERequestContext
&
ctx
)
{
void
NVDRV
::
Ioctl
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_NVDRV
,
"(STUBBED) called"
);
IPC
::
RequestParser
rp
{
ctx
};
IPC
::
RequestParser
rp
{
ctx
};
u32
fd
=
rp
.
Pop
<
u32
>
();
u32
fd
=
rp
.
Pop
<
u32
>
();
...
@@ -49,7 +49,7 @@ void NVDRV::Ioctl(Kernel::HLERequestContext& ctx) {
...
@@ -49,7 +49,7 @@ void NVDRV::Ioctl(Kernel::HLERequestContext& ctx) {
}
}
void
NVDRV
::
Close
(
Kernel
::
HLERequestContext
&
ctx
)
{
void
NVDRV
::
Close
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_NVDRV
,
"(STUBBED) called"
);
IPC
::
RequestParser
rp
{
ctx
};
IPC
::
RequestParser
rp
{
ctx
};
u32
fd
=
rp
.
Pop
<
u32
>
();
u32
fd
=
rp
.
Pop
<
u32
>
();
...
@@ -61,7 +61,7 @@ void NVDRV::Close(Kernel::HLERequestContext& ctx) {
...
@@ -61,7 +61,7 @@ void NVDRV::Close(Kernel::HLERequestContext& ctx) {
}
}
void
NVDRV
::
Initialize
(
Kernel
::
HLERequestContext
&
ctx
)
{
void
NVDRV
::
Initialize
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_NVDRV
,
"(STUBBED) called"
);
IPC
::
ResponseBuilder
rb
{
ctx
,
3
};
IPC
::
ResponseBuilder
rb
{
ctx
,
3
};
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
Push
<
u32
>
(
0
);
rb
.
Push
<
u32
>
(
0
);
...
@@ -71,7 +71,7 @@ void NVDRV::SetClientPID(Kernel::HLERequestContext& ctx) {
...
@@ -71,7 +71,7 @@ void NVDRV::SetClientPID(Kernel::HLERequestContext& ctx) {
IPC
::
RequestParser
rp
{
ctx
};
IPC
::
RequestParser
rp
{
ctx
};
pid
=
rp
.
Pop
<
u64
>
();
pid
=
rp
.
Pop
<
u64
>
();
LOG_INFO
(
Service
,
"called, pid=0x%lx"
,
pid
);
LOG_INFO
(
Service
_NVDRV
,
"called, pid=0x%lx"
,
pid
);
IPC
::
ResponseBuilder
rb
{
ctx
,
3
};
IPC
::
ResponseBuilder
rb
{
ctx
,
3
};
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
Push
<
u32
>
(
0
);
rb
.
Push
<
u32
>
(
0
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment