File tree 6 files changed +9
-12
lines changed
Documentation/filesystems
6 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -722,7 +722,7 @@ struct address_space_operations {
722
722
723
723
The second case is when a request has been made to invalidate
724
724
some or all pages in an address_space. This can happen
725
- through the fadvice (POSIX_FADV_DONTNEED) system call or by the
725
+ through the fadvise (POSIX_FADV_DONTNEED) system call or by the
726
726
filesystem explicitly requesting it as nfs and 9fs do (when
727
727
they believe the cache may be out of date with storage) by
728
728
calling invalidate_inode_pages2().
Original file line number Diff line number Diff line change @@ -1148,7 +1148,7 @@ END(error_entry)
1148
1148
1149
1149
1150
1150
/*
1151
- * On entry, EBS is a "return to kernel mode" flag:
1151
+ * On entry, EBX is a "return to kernel mode" flag:
1152
1152
* 1: already in kernel mode, don't need SWAPGS
1153
1153
* 0: user gsbase is loaded, we need SWAPGS and standard preparation for return to usermode
1154
1154
*/
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ TRACE_EVENT(irq_handler_entry,
75
75
* @ret: return value
76
76
*
77
77
* If the @ret value is set to IRQ_HANDLED, then we know that the corresponding
78
- * @action->handler scuccessully handled this irq. Otherwise, the irq might be
78
+ * @action->handler successfully handled this irq. Otherwise, the irq might be
79
79
* a shared irq line, or the irq was not handled successfully. Can be used in
80
80
* conjunction with the irq_handler_entry to understand irq handler latencies.
81
81
*/
Original file line number Diff line number Diff line change @@ -610,8 +610,7 @@ static int perf_sysenter_enable(struct trace_event_call *call)
610
610
if (!sys_perf_refcount_enter )
611
611
ret = register_trace_sys_enter (perf_syscall_enter , NULL );
612
612
if (ret ) {
613
- pr_info ("event trace: Could not activate"
614
- "syscall entry trace point" );
613
+ pr_info ("event trace: Could not activate syscall entry trace point" );
615
614
} else {
616
615
set_bit (num , enabled_perf_enter_syscalls );
617
616
sys_perf_refcount_enter ++ ;
@@ -682,8 +681,7 @@ static int perf_sysexit_enable(struct trace_event_call *call)
682
681
if (!sys_perf_refcount_exit )
683
682
ret = register_trace_sys_exit (perf_syscall_exit , NULL );
684
683
if (ret ) {
685
- pr_info ("event trace: Could not activate"
686
- "syscall exit trace point" );
684
+ pr_info ("event trace: Could not activate syscall exit trace point" );
687
685
} else {
688
686
set_bit (num , enabled_perf_exit_syscalls );
689
687
sys_perf_refcount_exit ++ ;
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ config DEBUG_SECTION_MISMATCH
305
305
a larger kernel).
306
306
- Run the section mismatch analysis for each module/built-in.o file.
307
307
When we run the section mismatch analysis on vmlinux.o, we
308
- lose valueble information about where the mismatch was
308
+ lose valuable information about where the mismatch was
309
309
introduced.
310
310
Running the analysis for each module/built-in.o file
311
311
tells where the mismatch happens much closer to the
Original file line number Diff line number Diff line change @@ -156,12 +156,11 @@ EXPORT_SYMBOL_GPL(securityfs_create_file);
156
156
* This function returns a pointer to a dentry if it succeeds. This
157
157
* pointer must be passed to the securityfs_remove() function when the file is
158
158
* to be removed (no automatic cleanup happens if your module is unloaded,
159
- * you are responsible here). If an error occurs, %NULL will be returned.
159
+ * you are responsible here). If an error occurs, the function will return
160
+ * the error value (via ERR_PTR).
160
161
*
161
162
* If securityfs is not enabled in the kernel, the value %-ENODEV is
162
- * returned. It is not wise to check for this value, but rather, check for
163
- * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
164
- * code.
163
+ * returned.
165
164
*/
166
165
struct dentry * securityfs_create_dir (const char * name , struct dentry * parent )
167
166
{
You can’t perform that action at this time.
0 commit comments