mirror of
https://github.com/opnsense/src.git
synced 2026-03-16 23:55:19 -04:00
- Improve the definition of INKERNEL() to include the DMAP area and the
proper start of the kernel area. Discussed with: peter
This commit is contained in:
parent
722d16b7fc
commit
bb2fd058ce
1 changed files with 2 additions and 1 deletions
|
|
@ -178,7 +178,8 @@ db_ss(struct db_variable *vp, db_expr_t *valuep, int op)
|
|||
/*
|
||||
* Stack trace.
|
||||
*/
|
||||
#define INKERNEL(va) (((vm_offset_t)(va)) >= USRSTACK)
|
||||
#define INKERNEL(va) (((va) >= DMAP_MIN_ADDRESS && (va) < DMAP_MAX_ADDRESS) \
|
||||
|| (va) >= KERNBASE)
|
||||
|
||||
struct amd64_frame {
|
||||
struct amd64_frame *f_frame;
|
||||
|
|
|
|||
Loading…
Reference in a new issue