mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
Kernel: Move VirtIO RNG implementation to the Security/Random directory
This commit is contained in:
parent
bbb749ab47
commit
0bab9a9313
Notes:
sideshowbarker
2024-07-17 06:35:23 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/0bab9a9313 Pull-request: https://github.com/SerenityOS/serenity/pull/24152 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/spholz
5 changed files with 4 additions and 4 deletions
|
@ -10,10 +10,10 @@
|
|||
#include <Kernel/Bus/PCI/API.h>
|
||||
#include <Kernel/Bus/PCI/IDs.h>
|
||||
#include <Kernel/Bus/VirtIO/Device.h>
|
||||
#include <Kernel/Bus/VirtIO/RNG.h>
|
||||
#include <Kernel/Bus/VirtIO/Transport/PCIe/Detect.h>
|
||||
#include <Kernel/Devices/Serial/VirtIO/Console.h>
|
||||
#include <Kernel/Sections.h>
|
||||
#include <Kernel/Security/Random/VirtIO/RNG.h>
|
||||
|
||||
namespace Kernel::VirtIO {
|
||||
|
||||
|
|
|
@ -50,7 +50,6 @@ set(KERNEL_SOURCES
|
|||
Bus/VirtIO/Transport/InterruptHandler.cpp
|
||||
Bus/VirtIO/Device.cpp
|
||||
Bus/VirtIO/Queue.cpp
|
||||
Bus/VirtIO/RNG.cpp
|
||||
Devices/AsyncDeviceRequest.cpp
|
||||
Devices/Audio/AC97/AC97.cpp
|
||||
Devices/Audio/Channel.cpp
|
||||
|
@ -277,6 +276,7 @@ set(KERNEL_SOURCES
|
|||
Net/Socket.cpp
|
||||
Net/TCPSocket.cpp
|
||||
Net/UDPSocket.cpp
|
||||
Security/Random/VirtIO/RNG.cpp
|
||||
Security/AddressSanitizer.cpp
|
||||
Security/Credentials.cpp
|
||||
Security/Random.cpp
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <Kernel/Bus/VirtIO/RNG.h>
|
||||
#include <Kernel/Bus/VirtIO/Transport/PCIe/TransportLink.h>
|
||||
#include <Kernel/Sections.h>
|
||||
#include <Kernel/Security/Random/VirtIO/RNG.h>
|
||||
|
||||
namespace Kernel::VirtIO {
|
||||
|
|
@ -496,7 +496,6 @@ executable("Kernel_bin") {
|
|||
"Bus/USB/USBTransfer.cpp",
|
||||
"Bus/VirtIO/Device.cpp",
|
||||
"Bus/VirtIO/Queue.cpp",
|
||||
"Bus/VirtIO/RNG.cpp",
|
||||
"Devices/AsyncDeviceRequest.cpp",
|
||||
"Devices/Audio/AC97/AC97.cpp",
|
||||
"Devices/Audio/Channel.cpp",
|
||||
|
@ -718,6 +717,7 @@ executable("Kernel_bin") {
|
|||
"Security/Credentials.cpp",
|
||||
"Security/Jail.cpp",
|
||||
"Security/Random.cpp",
|
||||
"Security/Random/VirtIO/RNG.cpp",
|
||||
"Security/UBSanitizer.cpp",
|
||||
"Syscalls/SyscallHandler.cpp",
|
||||
"Syscalls/alarm.cpp",
|
||||
|
|
Loading…
Reference in a new issue