Skip to content

Commit 0215d3c

Browse files
committed
Reduce Log
1 parent f223c27 commit 0215d3c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

arch/x86/kernel/process_64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ start_thread_common(struct pt_regs *regs, unsigned long new_ip,
507507
unsigned long new_sp,
508508
unsigned int _cs, unsigned int _ss, unsigned int _ds)
509509
{
510-
pr_alert("!!! start_thread_common, target _cs: 0x%x, _ss: 0x%x, _ds: 0x%x, new_ip: %lx, new_sp: %lx !!!\n", _cs, _ss, _ds, new_ip, new_sp);
510+
//pr_alert("!!! start_thread_common, target _cs: 0x%x, _ss: 0x%x, _ds: 0x%x, new_ip: %lx, new_sp: %lx !!!\n", _cs, _ss, _ds, new_ip, new_sp);
511511

512512
WARN_ON_ONCE(regs != current_pt_regs());
513513

include/linux/mmap_lock.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ static inline void mmap_read_lock(struct mm_struct *mm)
149149

150150
static inline int mmap_read_lock_killable(struct mm_struct *mm)
151151
{
152-
pr_alert("!!! %s %s %d\n", __FILE__, __func__, __LINE__);
152+
//pr_alert("!!! %s %s %d\n", __FILE__, __func__, __LINE__);
153153
int ret;
154154

155155
__mmap_lock_trace_start_locking(mm, false);

kernel/exit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ static void synchronize_group_exit(struct task_struct *tsk, long code)
809809
void __noreturn do_exit(long code)
810810
{
811811
//dump_stack();
812-
pr_alert("%s %s %d, exit code %ld\n", __func__, __FILE__, __LINE__, code);
812+
//pr_alert("%s %s %d, exit code %ld\n", __func__, __FILE__, __LINE__, code);
813813
struct task_struct *tsk = current;
814814
int group_dead;
815815

0 commit comments

Comments
 (0)