diff options
author | bsd <bsd@FreeBSD.org> | 2000-07-01 02:40:13 +0000 |
---|---|---|
committer | bsd <bsd@FreeBSD.org> | 2000-07-01 02:40:13 +0000 |
commit | f4c833b228809b75d4a8eea76e9ab5645d74bd13 (patch) | |
tree | 43fcd79458307751a682ba81c081780f39a11d67 /sys/i386 | |
parent | 13b4933d9e622b14283bd869e4ced912cd17a5a5 (diff) | |
download | FreeBSD-src-f4c833b228809b75d4a8eea76e9ab5645d74bd13.zip FreeBSD-src-f4c833b228809b75d4a8eea76e9ab5645d74bd13.tar.gz |
Fix my own style bugs (use of spaces instead of tabs for indentation).
This is a style-only change.
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/i386/trap.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/sys/i386/i386/trap.c b/sys/i386/i386/trap.c index 703d48d..83c83b4 100644 --- a/sys/i386/i386/trap.c +++ b/sys/i386/i386/trap.c @@ -522,24 +522,24 @@ kernel_trap: frame.tf_eflags &= ~PSL_T; return; } - /* - * Ignore debug register trace traps due to - * accesses in the user's address space, which - * can happen under several conditions such as - * if a user sets a watchpoint on a buffer and - * then passes that buffer to a system call. - * We still want to get TRCTRAPS for addresses - * in kernel space because that is useful when - * debugging the kernel. - */ - if (user_dbreg_trap()) { - /* - * Reset breakpoint bits because the - * processor doesn't - */ - load_dr6(rdr6() & 0xfffffff0); - return; - } + /* + * Ignore debug register trace traps due to + * accesses in the user's address space, which + * can happen under several conditions such as + * if a user sets a watchpoint on a buffer and + * then passes that buffer to a system call. + * We still want to get TRCTRAPS for addresses + * in kernel space because that is useful when + * debugging the kernel. + */ + if (user_dbreg_trap()) { + /* + * Reset breakpoint bits because the + * processor doesn't + */ + load_dr6(rdr6() & 0xfffffff0); + return; + } /* * Fall through (TRCTRAP kernel mode, kernel address) */ |