forked from OpenSDV/Linux_Kernel_map4vehicle
fix spaces
This commit is contained in:
parent
5726a30ee9
commit
2a5fb6e703
16
srcxray.py
16
srcxray.py
|
@ -29,20 +29,20 @@ from pathlib import *
|
|||
import pygraphviz
|
||||
|
||||
default_root = 'starts'
|
||||
black_list = ('aligned __attribute__ unlikely typeof u32'
|
||||
'PVOP_CALLEE0 PVOP_VCALLEE0 PVOP_VCALLEE1 if trace_hardirqs_off'
|
||||
black_list = ('aligned __attribute__ unlikely typeof u32 '
|
||||
'PVOP_CALLEE0 PVOP_VCALLEE0 PVOP_VCALLEE1 if trace_hardirqs_off '
|
||||
'i NULL likely unlikely true false test_bit NAPI_GRO_CB clear_bit '
|
||||
'atomic_read preempt_disable preempt_enable container_of ENOSYS '
|
||||
'atomic_read preempt_disable preempt_enable container_of ENOSYS '
|
||||
'READ_ONCE u64 u8 _RET_IP_ ret current '
|
||||
'AT_FDCWD fdput EBADF file_inode '
|
||||
'ssize_t path_put __user '
|
||||
'list_empty memcpy size_t loff_t pos d_inode dput copy_to_user EIO bool out IS_ERR '
|
||||
'list_empty memcpy size_t loff_t pos d_inode dput copy_to_user EIO bool out IS_ERR '
|
||||
'EPERM rcu_read_lock rcu_read_unlock spin_lock spin_unlock list_for_each_entry kfree '
|
||||
'GFP_KERNEL ENOMEM EFAULT ENOENT EAGAIN PTR_ERR PAGE_SHIFT PAGE_SIZE '
|
||||
'pgoff_t pte_t pmd_t HPAGE_PMD_NR PageLocked entry swp_entry_t next unlock_page spinlock_t end start '
|
||||
' VM_BUG_ON VM_BUG_ON_PAGE BDI_SHOW max '
|
||||
'ssize_t path_put __user '
|
||||
'list_del compound_head list_add cond_resched put_page nr_pages min spin_lock_irqsave IS_ENABLED '
|
||||
'list_del compound_head list_add cond_resched put_page nr_pages min spin_lock_irqsave IS_ENABLED '
|
||||
'EBUSY UL NODE_DATA pr_err memset list size ptl PAGE_MASK pr_info offset addr get_page sprintf '
|
||||
'INIT_LIST_HEAD NUMA_NO_NODE spin_unlock_irqrestore mutex_unlock mutex_lock '
|
||||
'page_to_nid page_to_pfn pfn page_zone pfn_to_page'
|
||||
|
@ -335,7 +335,7 @@ def syscalls():
|
|||
if not os.path.isfile(scd):
|
||||
os.system("grep SYSCALL_DEFINE -r --include='*.c' > " + scd)
|
||||
with open(scd, 'r') as f:
|
||||
v = set('sigsuspend', 'llseek', 'sysfs', 'sync_file_range2', 'ustat', 'bdflush')
|
||||
v = set(['sigsuspend', 'llseek', 'sysfs', 'sync_file_range2', 'ustat', 'bdflush'])
|
||||
for s in f:
|
||||
if any(x in s.lower() for x in ['compat', 'stub']):
|
||||
continue
|
||||
|
@ -529,8 +529,8 @@ def cflow_preprocess(a):
|
|||
|
||||
|
||||
cflow_param = {
|
||||
"modifier": "__init __inline__ noinline __initdata __randomize_layout __read_mostly asmlinkage "
|
||||
" __visible __init __leaf__ __ref __latent_entropy __init_or_module ",
|
||||
"modifier": "__init __inline__ noinline __initdata __randomize_layout asmlinkage "
|
||||
" __visible __init __leaf__ __ref __latent_entropy __init_or_module ",
|
||||
"wrapper": "__attribute__ __section__ "
|
||||
"TRACE_EVENT MODULE_AUTHOR MODULE_DESCRIPTION MODULE_LICENSE MODULE_LICENSE MODULE_SOFTDEP "
|
||||
"__acquires __releases __ATTR"
|
||||
|
|
Loading…
Reference in New Issue