[kernel] test run sorting some includes

No functional change.
This commit is contained in:
Travis Geiselbrecht
2019-07-13 17:21:00 -07:00
parent 4aa556b837
commit df32504748
31 changed files with 109 additions and 100 deletions

View File

@@ -6,12 +6,13 @@
* https://opensource.org/licenses/MIT
*/
#include <kernel/vm.h>
#include "vm_priv.h"
#include <lk/trace.h>
#include <stdint.h>
#include <stdlib.h>
#include <sys/types.h>
#include <lk/trace.h>
#include "vm_priv.h"
#define LOCAL_TRACE 0

View File

@@ -6,17 +6,18 @@
* https://opensource.org/licenses/MIT
*/
#include <kernel/vm.h>
#include "vm_priv.h"
#include <lk/trace.h>
#include <assert.h>
#include <lk/list.h>
#include <stdlib.h>
#include <lk/err.h>
#include <string.h>
#include <lk/pow2.h>
#include <lk/console_cmd.h>
#include <kernel/mutex.h>
#include <lk/console_cmd.h>
#include <lk/err.h>
#include <lk/list.h>
#include <lk/pow2.h>
#include <lk/trace.h>
#include <stdlib.h>
#include <string.h>
#include "vm_priv.h"
#define LOCAL_TRACE 0

View File

@@ -6,16 +6,17 @@
* https://opensource.org/licenses/MIT
*/
#include <kernel/vm.h>
#include "vm_priv.h"
#include <lk/trace.h>
#include <lk/err.h>
#include <string.h>
#include <lk/init.h>
#include <lk/console_cmd.h>
#include <arch/mmu.h>
#include <kernel/thread.h>
#include <lk/console_cmd.h>
#include <lk/debug.h>
#include <lk/err.h>
#include <lk/init.h>
#include <lk/trace.h>
#include <string.h>
#include "vm_priv.h"
#define LOCAL_TRACE 0

View File

@@ -7,9 +7,9 @@
*/
#pragma once
#include <kernel/vm.h>
#include <stdint.h>
#include <sys/types.h>
#include <kernel/vm.h>
/* simple boot time allocator */
void *boot_alloc_mem(size_t len) __MALLOC;

View File

@@ -5,13 +5,13 @@
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT
*/
#include <lk/trace.h>
#include <assert.h>
#include <lk/err.h>
#include <string.h>
#include <lk/console_cmd.h>
#include <kernel/vm.h>
#include <kernel/mutex.h>
#include <kernel/vm.h>
#include <lk/console_cmd.h>
#include <lk/err.h>
#include <lk/trace.h>
#include <string.h>
#include "vm_priv.h"
#define LOCAL_TRACE 0