mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-09 00:42:28 +07:00
staging/lustre/libcfs: Shortened too long lines
Lines that were too long for not good reason were shortened in this patch. Found with checkpatch. Signed-off-by: Oleg Drokin <green@linuxhacker.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ad6eb8bbf4
commit
417ad15656
@ -189,10 +189,12 @@ static struct notifier_block libcfs_panic_notifier = {
|
||||
|
||||
void libcfs_register_panic_notifier(void)
|
||||
{
|
||||
atomic_notifier_chain_register(&panic_notifier_list, &libcfs_panic_notifier);
|
||||
atomic_notifier_chain_register(&panic_notifier_list,
|
||||
&libcfs_panic_notifier);
|
||||
}
|
||||
|
||||
void libcfs_unregister_panic_notifier(void)
|
||||
{
|
||||
atomic_notifier_chain_unregister(&panic_notifier_list, &libcfs_panic_notifier);
|
||||
atomic_notifier_chain_unregister(&panic_notifier_list,
|
||||
&libcfs_panic_notifier);
|
||||
}
|
||||
|
@ -399,9 +399,9 @@ int libcfs_debug_vmsg2(struct libcfs_debug_msg_data *msgdata,
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (cfs_time_after(cfs_time_current(), cdls->cdls_next +
|
||||
libcfs_console_max_delay
|
||||
+ cfs_time_seconds(10))) {
|
||||
if (cfs_time_after(cfs_time_current(),
|
||||
cdls->cdls_next + libcfs_console_max_delay +
|
||||
cfs_time_seconds(10))) {
|
||||
/* last timeout was a long time ago */
|
||||
cdls->cdls_delay /= libcfs_console_backoff * 4;
|
||||
} else {
|
||||
|
@ -46,7 +46,8 @@
|
||||
#define CFS_WS_NAME_LEN 16
|
||||
|
||||
struct cfs_wi_sched {
|
||||
struct list_head ws_list; /* chain on global list */
|
||||
/* chain on global list */
|
||||
struct list_head ws_list;
|
||||
/** serialised workitems */
|
||||
spinlock_t ws_lock;
|
||||
/** where schedulers sleep */
|
||||
|
Loading…
Reference in New Issue
Block a user