utils.hh (616eaa66aa4955f182eb0117e17e07da76fcf696) | utils.hh (2f6362484c0e1250ef6a76cccdbe4a95587e850c) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2019 The FreeBSD Foundation 5 * 6 * This software was developed by BFF Storage Systems, LLC under sponsorship 7 * from the FreeBSD Foundation. 8 * --- 60 unchanged lines hidden (view full) --- 69 bool m_ro; 70 bool m_async; 71 bool m_noclusterr; 72 bool m_nointr; 73 unsigned m_time_gran; 74 MockFS *m_mock = NULL; 75 const static uint64_t FH = 0xdeadbeef1a7ebabe; 76 const char *reclaim_mib = "debug.try_reclaim_vnode"; | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2019 The FreeBSD Foundation 5 * 6 * This software was developed by BFF Storage Systems, LLC under sponsorship 7 * from the FreeBSD Foundation. 8 * --- 60 unchanged lines hidden (view full) --- 69 bool m_ro; 70 bool m_async; 71 bool m_noclusterr; 72 bool m_nointr; 73 unsigned m_time_gran; 74 MockFS *m_mock = NULL; 75 const static uint64_t FH = 0xdeadbeef1a7ebabe; 76 const char *reclaim_mib = "debug.try_reclaim_vnode"; |
77 const char *m_fsname; |
|
77 const char *m_subtype; 78 79 public: 80 int m_maxbcachebuf; 81 int m_maxphys; 82 83 FuseTest(): 84 m_maxreadahead(0), --- 5 unchanged lines hidden (view full) --- 90 m_pm(BLOCKING), 91 m_noatime(false), 92 m_push_symlinks_in(false), 93 m_ro(false), 94 m_async(false), 95 m_noclusterr(false), 96 m_nointr(false), 97 m_time_gran(1), | 78 const char *m_subtype; 79 80 public: 81 int m_maxbcachebuf; 82 int m_maxphys; 83 84 FuseTest(): 85 m_maxreadahead(0), --- 5 unchanged lines hidden (view full) --- 91 m_pm(BLOCKING), 92 m_noatime(false), 93 m_push_symlinks_in(false), 94 m_ro(false), 95 m_async(false), 96 m_noclusterr(false), 97 m_nointr(false), 98 m_time_gran(1), |
99 m_fsname(""), |
|
98 m_subtype(""), 99 m_maxbcachebuf(0), 100 m_maxphys(0) 101 {} 102 103 virtual void SetUp(); 104 105 virtual void TearDown() { --- 168 unchanged lines hidden --- | 100 m_subtype(""), 101 m_maxbcachebuf(0), 102 m_maxphys(0) 103 {} 104 105 virtual void SetUp(); 106 107 virtual void TearDown() { --- 168 unchanged lines hidden --- |