xfs_globals.c (250d4b4c409778bc44577dfc59909935c92fd006) | xfs_globals.c (40786717c88c2d4cb426cc2eb99ac50000e5a910) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (c) 2000-2005 Silicon Graphics, Inc. 4 * All Rights Reserved. 5 */ 6#include "xfs.h" 7 8/* --- 26 unchanged lines hidden (view full) --- 35struct xfs_globals xfs_globals = { 36 .log_recovery_delay = 0, /* no delay by default */ 37 .mount_delay = 0, /* no delay by default */ 38#ifdef XFS_ASSERT_FATAL 39 .bug_on_assert = true, /* assert failures BUG() */ 40#else 41 .bug_on_assert = false, /* assert failures WARN() */ 42#endif | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (c) 2000-2005 Silicon Graphics, Inc. 4 * All Rights Reserved. 5 */ 6#include "xfs.h" 7 8/* --- 26 unchanged lines hidden (view full) --- 35struct xfs_globals xfs_globals = { 36 .log_recovery_delay = 0, /* no delay by default */ 37 .mount_delay = 0, /* no delay by default */ 38#ifdef XFS_ASSERT_FATAL 39 .bug_on_assert = true, /* assert failures BUG() */ 40#else 41 .bug_on_assert = false, /* assert failures WARN() */ 42#endif |
43#ifdef DEBUG 44 .pwork_threads = -1, /* automatic thread detection */ 45#endif |
|
43}; | 46}; |