/kernel/linux/linux-5.10/fs/jfs/ |
D | jfs_logmgr.c | 80 #define LOG_LOCK_INIT(log) mutex_init(&(log)->loglock) argument 81 #define LOG_LOCK(log) mutex_lock(&((log)->loglock)) argument 82 #define LOG_UNLOCK(log) mutex_unlock(&((log)->loglock)) argument 89 #define LOGGC_LOCK_INIT(log) spin_lock_init(&(log)->gclock) argument 90 #define LOGGC_LOCK(log) spin_lock_irq(&(log)->gclock) argument 91 #define LOGGC_UNLOCK(log) spin_unlock_irq(&(log)->gclock) argument 163 static int lmWriteRecord(struct jfs_log * log, struct tblock * tblk, 166 static int lmNextPage(struct jfs_log * log); 167 static int lmLogFileSystem(struct jfs_log * log, struct jfs_sb_info *sbi, 172 static int lbmLogInit(struct jfs_log * log); [all …]
|
D | jfs_txnmgr.c | 151 static int diLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd, 153 static int dataLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd, 155 static void dtLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd, 157 static void mapLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd, 162 static int txLog(struct jfs_log * log, struct tblock * tblk, 166 static void xtLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd, 352 struct jfs_log *log; in txBegin() local 355 log = JFS_SBI(sb)->log; in txBegin() 366 if (test_bit(log_SYNCBARRIER, &log->flag) || in txBegin() 367 test_bit(log_QUIESCE, &log->flag)) { in txBegin() [all …]
|
D | jfs_logmgr.h | 336 } log; member 477 #define LOGSYNC_LOCK_INIT(log) spin_lock_init(&(log)->synclock) argument 478 #define LOGSYNC_LOCK(log, flags) spin_lock_irqsave(&(log)->synclock, flags) argument 479 #define LOGSYNC_UNLOCK(log, flags) \ argument 480 spin_unlock_irqrestore(&(log)->synclock, flags) 483 #define logdiff(diff, lsn, log)\ argument 485 diff = (lsn) - (log)->syncpt;\ 487 diff += (log)->logsize;\ 492 extern int lmLogShutdown(struct jfs_log * log); 493 extern int lmLogInit(struct jfs_log * log); [all …]
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/uc/ |
D | intel_guc_log.c | 13 static void guc_log_capture_logs(struct intel_guc_log *log); 58 static void guc_log_enable_flush_events(struct intel_guc_log *log) in guc_log_enable_flush_events() argument 60 intel_guc_enable_msg(log_to_guc(log), in guc_log_enable_flush_events() 65 static void guc_log_disable_flush_events(struct intel_guc_log *log) in guc_log_disable_flush_events() argument 67 intel_guc_disable_msg(log_to_guc(log), in guc_log_disable_flush_events() 143 static void guc_move_to_next_buf(struct intel_guc_log *log) in guc_move_to_next_buf() argument 152 relay_reserve(log->relay.channel, log->vma->obj->base.size); in guc_move_to_next_buf() 155 relay_flush(log->relay.channel); in guc_move_to_next_buf() 158 static void *guc_get_write_buffer(struct intel_guc_log *log) in guc_get_write_buffer() argument 169 return relay_reserve(log->relay.channel, 0); in guc_get_write_buffer() [all …]
|
D | intel_guc_log_debugfs.c | 32 struct intel_guc_log *log = data; in guc_log_level_get() local 34 if (!intel_guc_is_used(log_to_guc(log))) in guc_log_level_get() 37 *val = intel_guc_log_get_level(log); in guc_log_level_get() 44 struct intel_guc_log *log = data; in guc_log_level_set() local 46 if (!intel_guc_is_used(log_to_guc(log))) in guc_log_level_set() 49 return intel_guc_log_set_level(log, val); in guc_log_level_set() 58 struct intel_guc_log *log = inode->i_private; in guc_log_relay_open() local 60 if (!intel_guc_is_ready(log_to_guc(log))) in guc_log_relay_open() 63 file->private_data = log; in guc_log_relay_open() 65 return intel_guc_log_relay_open(log); in guc_log_relay_open() [all …]
|
D | intel_guc_log.h | 64 void intel_guc_log_init_early(struct intel_guc_log *log); 65 int intel_guc_log_create(struct intel_guc_log *log); 66 void intel_guc_log_destroy(struct intel_guc_log *log); 68 int intel_guc_log_set_level(struct intel_guc_log *log, u32 level); 69 bool intel_guc_log_relay_created(const struct intel_guc_log *log); 70 int intel_guc_log_relay_open(struct intel_guc_log *log); 71 int intel_guc_log_relay_start(struct intel_guc_log *log); 72 void intel_guc_log_relay_flush(struct intel_guc_log *log); 73 void intel_guc_log_relay_close(struct intel_guc_log *log); 75 void intel_guc_log_handle_flush_event(struct intel_guc_log *log); [all …]
|
/kernel/linux/linux-5.10/drivers/md/ |
D | raid5-cache.c | 210 struct r5l_log *log; member 250 bool r5c_is_writeback(struct r5l_log *log) in r5c_is_writeback() argument 252 return (log != NULL && in r5c_is_writeback() 253 log->r5c_journal_mode == R5C_JOURNAL_MODE_WRITE_BACK); in r5c_is_writeback() 256 static sector_t r5l_ring_add(struct r5l_log *log, sector_t start, sector_t inc) in r5l_ring_add() argument 259 if (start >= log->device_size) in r5l_ring_add() 260 start = start - log->device_size; in r5l_ring_add() 264 static sector_t r5l_ring_distance(struct r5l_log *log, sector_t start, in r5l_ring_distance() argument 270 return end + log->device_size - start; in r5l_ring_distance() 273 static bool r5l_has_free_space(struct r5l_log *log, sector_t size) in r5l_has_free_space() argument [all …]
|
D | dm-log.c | 153 struct dm_dirty_log *log; in dm_dirty_log_create() local 155 log = kmalloc(sizeof(*log), GFP_KERNEL); in dm_dirty_log_create() 156 if (!log) in dm_dirty_log_create() 161 kfree(log); in dm_dirty_log_create() 165 log->flush_callback_fn = flush_callback_fn; in dm_dirty_log_create() 166 log->type = type; in dm_dirty_log_create() 167 if (type->ctr(log, ti, argc, argv)) { in dm_dirty_log_create() 168 kfree(log); in dm_dirty_log_create() 173 return log; in dm_dirty_log_create() 177 void dm_dirty_log_destroy(struct dm_dirty_log *log) in dm_dirty_log_destroy() argument [all …]
|
D | raid5-log.h | 7 extern int r5l_write_stripe(struct r5l_log *log, struct stripe_head *head_sh); 8 extern void r5l_write_stripe_run(struct r5l_log *log); 9 extern void r5l_flush_stripe_to_raid(struct r5l_log *log); 11 extern int r5l_handle_flush_request(struct r5l_log *log, struct bio *bio); 12 extern void r5l_quiesce(struct r5l_log *log, int quiesce); 14 extern bool r5c_is_writeback(struct r5l_log *log); 23 extern void r5l_wake_reclaim(struct r5l_log *log, sector_t space); 26 extern int r5c_cache_data(struct r5l_log *log, struct stripe_head *sh); 35 extern int r5l_start(struct r5l_log *log); 47 extern int ppl_handle_flush_request(struct r5l_log *log, struct bio *bio); [all …]
|
D | raid5-ppl.c | 136 struct ppl_log *log; member 232 static struct ppl_io_unit *ppl_new_iounit(struct ppl_log *log, in ppl_new_iounit() argument 235 struct ppl_conf *ppl_conf = log->ppl_conf; in ppl_new_iounit() 248 io->log = log; in ppl_new_iounit() 266 static int ppl_log_stripe(struct ppl_log *log, struct stripe_head *sh) in ppl_log_stripe() argument 268 struct ppl_io_unit *io = log->current_io; in ppl_log_stripe() 279 if (io && (io->pp_size == log->entry_space || in ppl_log_stripe() 288 io = ppl_new_iounit(log, sh); in ppl_log_stripe() 291 spin_lock_irq(&log->io_list_lock); in ppl_log_stripe() 292 list_add_tail(&io->log_sibling, &log->io_list); in ppl_log_stripe() [all …]
|
/kernel/linux/linux-5.10/fs/xfs/ |
D | xfs_log.c | 35 struct xlog *log, 39 struct xlog *log); 46 struct xlog *log, 54 struct xlog *log, 59 struct xlog *log, 63 struct xlog *log, 68 struct xlog *log, 72 struct xlog *log); 75 struct xlog *log, 80 struct xlog *log, [all …]
|
D | xfs_log_recover.c | 44 #define xlog_recover_check_summary(log) argument 61 struct xlog *log, in xlog_verify_bno() argument 65 if (blk_no < 0 || blk_no >= log->l_logBBsize) in xlog_verify_bno() 67 if (bbcount <= 0 || (blk_no + bbcount) > log->l_logBBsize) in xlog_verify_bno() 78 struct xlog *log, in xlog_alloc_buffer() argument 81 int align_mask = xfs_buftarg_dma_alignment(log->l_targ); in xlog_alloc_buffer() 87 if (XFS_IS_CORRUPT(log->l_mp, !xlog_verify_bno(log, 0, nbblks))) { in xlog_alloc_buffer() 88 xfs_warn(log->l_mp, "Invalid block length (0x%x) for buffer", in xlog_alloc_buffer() 107 if (nbblks > 1 && log->l_sectBBsize > 1) in xlog_alloc_buffer() 108 nbblks += log->l_sectBBsize; in xlog_alloc_buffer() [all …]
|
D | xfs_log_priv.h | 362 #define XLOG_CIL_SPACE_LIMIT(log) \ argument 363 min_t(int, (log)->l_logsize >> 3, BBTOB(XLOG_TOTAL_REC_SHIFT(log)) << 4) 365 #define XLOG_CIL_BLOCKING_SPACE_LIMIT(log) \ argument 366 (XLOG_CIL_SPACE_LIMIT(log) * 2) 441 #define XLOG_BUF_CANCEL_BUCKET(log, blkno) \ argument 442 ((log)->l_buf_cancel_table + ((uint64_t)blkno % XLOG_BC_TABLE_SIZE)) 444 #define XLOG_FORCED_SHUTDOWN(log) \ argument 445 (unlikely((log)->l_flags & XLOG_IO_ERROR)) 450 struct xlog *log); 453 struct xlog *log); [all …]
|
D | xfs_log_cil.c | 36 struct xlog *log) in xlog_cil_ticket_alloc() argument 40 tic = xlog_ticket_alloc(log, 0, 1, XFS_TRANSACTION, 0); in xlog_cil_ticket_alloc() 62 struct xlog *log) in xlog_cil_init_post_recovery() argument 64 log->l_cilp->xc_ctx->ticket = xlog_cil_ticket_alloc(log); in xlog_cil_init_post_recovery() 65 log->l_cilp->xc_ctx->sequence = 1; in xlog_cil_init_post_recovery() 125 struct xlog *log, in xlog_cil_alloc_shadow_bufs() argument 225 struct xlog *log, in xfs_cil_prepare_item() argument 266 lv->lv_item->li_seq = log->l_cilp->xc_ctx->sequence; in xfs_cil_prepare_item() 299 struct xlog *log, in xlog_cil_insert_format_items() argument 374 xfs_cil_prepare_item(log, lv, old_lv, diff_len, diff_iovecs); in xlog_cil_insert_format_items() [all …]
|
/kernel/linux/linux-5.10/include/linux/ |
D | dm-dirty-log.h | 35 int (*ctr)(struct dm_dirty_log *log, struct dm_target *ti, 37 void (*dtr)(struct dm_dirty_log *log); 43 int (*presuspend)(struct dm_dirty_log *log); 44 int (*postsuspend)(struct dm_dirty_log *log); 45 int (*resume)(struct dm_dirty_log *log); 51 uint32_t (*get_region_size)(struct dm_dirty_log *log); 57 int (*is_clean)(struct dm_dirty_log *log, region_t region); 70 int (*in_sync)(struct dm_dirty_log *log, region_t region, 77 int (*flush)(struct dm_dirty_log *log); 85 void (*mark_region)(struct dm_dirty_log *log, region_t region); [all …]
|
D | bpf_verifier.h | 353 static inline bool bpf_verifier_log_full(const struct bpf_verifier_log *log) in bpf_verifier_log_full() argument 355 return log->len_used >= log->len_total - 1; in bpf_verifier_log_full() 365 static inline bool bpf_verifier_log_needed(const struct bpf_verifier_log *log) in bpf_verifier_log_needed() argument 367 return log && in bpf_verifier_log_needed() 368 ((log->level && log->ubuf && !bpf_verifier_log_full(log)) || in bpf_verifier_log_needed() 369 log->level == BPF_LOG_KERNEL); in bpf_verifier_log_needed() 373 bpf_verifier_log_attr_valid(const struct bpf_verifier_log *log) in bpf_verifier_log_attr_valid() argument 375 return log->len_total >= 128 && log->len_total <= UINT_MAX >> 2 && in bpf_verifier_log_attr_valid() 376 log->level && log->ubuf && !(log->level & ~BPF_LOG_MASK); in bpf_verifier_log_attr_valid() 419 struct bpf_verifier_log log; member [all …]
|
/kernel/linux/linux-5.10/drivers/char/tpm/eventlog/ |
D | efi.c | 22 struct tpm_bios_log *log; in tpm_read_log_efi() local 34 log = &chip->log; in tpm_read_log_efi() 58 log->bios_event_log = kmemdup(log_tbl->log, log_size, GFP_KERNEL); in tpm_read_log_efi() 59 if (!log->bios_event_log) { in tpm_read_log_efi() 64 log->bios_event_log_end = log->bios_event_log + log_size; in tpm_read_log_efi() 79 kfree(log->bios_event_log); in tpm_read_log_efi() 94 tmp = krealloc(log->bios_event_log, in tpm_read_log_efi() 98 kfree(log->bios_event_log); in tpm_read_log_efi() 103 log->bios_event_log = tmp; in tpm_read_log_efi() 110 memcpy((void *)log->bios_event_log + log_size, in tpm_read_log_efi() [all …]
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
D | test_verifier_log.c | 48 static int load(char *log, size_t log_len, int log_level) in load() argument 57 attr.log_buf = ptr_to_u64(log); in load() 88 static void test_log_good(char *log, size_t buf_len, size_t log_len, in test_log_good() argument 94 memset(log, 1, buf_len); in test_log_good() 96 ret = load(log, log_len, 1); in test_log_good() 99 len = strnlen(log, buf_len); in test_log_good() 110 if (strchr(log, 1)) { in test_log_good() 115 check_ones(log + len + 1, buf_len - len - 1, in test_log_good() 118 if (memcmp(full_log, log, LOG_SIZE)) { in test_log_good() 124 static void test_log_bad(char *log, size_t log_len, int log_level) in test_log_bad() argument [all …]
|
/kernel/linux/linux-5.10/Documentation/admin-guide/device-mapper/ |
D | log-writes.rst | 2 dm-log-writes 5 This target takes 2 devices, one to pass all IO to normally, and one to log all 9 able to take arbitrary data from userspace to insert into the log. The data 10 that is in the WRITE requests is copied into the log to make the replay happen 16 We log things in order of completion once we are sure the write is no longer in 19 the log in a way that correlates to what is on disk and not what is in cache, 24 the FLUSH request completes we log all of the WRITEs and then the FLUSH. Only 31 The log would show the following: 52 which isn't quite what happened and wouldn't be caught during the log replay. 59 log-writes <dev_path> <log_dev_path> [all …]
|
D | dm-log.rst | 16 dm_dirty_log_type in include/linux/dm-dirty-log.h). Various different 23 disk drivers/md/dm-log.c 24 core drivers/md/dm-log.c 25 userspace drivers/md/dm-log-userspace* include/linux/dm-log-userspace.h 28 The "disk" log type 30 This log implementation commits the log state to disk. This way, the 33 The "core" log type 35 This log implementation keeps the log state in memory. The log state 38 available for storing log state. 40 The "userspace" log type [all …]
|
/kernel/linux/linux-5.10/Documentation/filesystems/ |
D | xfs-delayed-logging-design.rst | 14 logged. The reason for these differences is to reduce the amount of log space 21 modifications to a single object to be carried in the log at any given time. 22 This allows the log to avoid needing to flush each change to disk before 26 changes in the new transaction that is written to the log. 29 written to disk after change D, we would see in the log the following series 30 of transactions, their contents and the log sequence number (LSN) of the 43 the aggregation of all the previous changes currently held only in the log. 45 This relogging technique also allows objects to be moved forward in the log so 46 that an object being relogged does not prevent the tail of the log from ever 49 direct encoding of the location in the log of the transaction. [all …]
|
/kernel/linux/linux-5.10/fs/ |
D | fs_parser.c | 103 int __fs_parse(struct p_log *log, in __fs_parse() argument 117 warn_plog(log, "Deprecated parameter '%s'", param->key); in __fs_parse() 124 return inval_plog(log, "Unexpected value for '%s'", in __fs_parse() 128 int ret = p->type(log, p, param, result); in __fs_parse() 192 static int fs_param_bad_value(struct p_log *log, struct fs_parameter *param) in fs_param_bad_value() argument 194 return inval_plog(log, "Bad value for '%s'", param->key); in fs_param_bad_value() 197 int fs_param_is_bool(struct p_log *log, const struct fs_parameter_spec *p, in fs_param_is_bool() argument 202 return fs_param_bad_value(log, param); in fs_param_is_bool() 205 return fs_param_bad_value(log, param); in fs_param_is_bool() 211 int fs_param_is_u32(struct p_log *log, const struct fs_parameter_spec *p, in fs_param_is_u32() argument [all …]
|
/kernel/linux/linux-5.10/tools/perf/tests/ |
D | attr.py | 95 log.debug(" %s = %s" % (key, val)) 99 log.debug(" Event %s" % name); 107 log.debug(" [%s] %s %s" % (t, self[t], other[t])); 124 log.warning("expected %s=%s, got %s" % (t, self[t], other[t])) 145 log.warning("running '%s'" % path) 160 log.warning("test limitation '%s'" % self.arch) 166 log.debug(" loading expected events"); 187 log.warning("excluded architecture list %s" % arch_list) 232 log.info(" '%s' ret '%s', expected '%s'" % (cmd, str(ret), str(self.ret))) 240 log.debug(" compare"); [all …]
|
/kernel/linux/linux-5.10/Documentation/ABI/testing/ |
D | sysfs-fs-xfs | 1 What: /sys/fs/xfs/<disk>/log/log_head_lsn 6 The log sequence number (LSN) of the current head of the 7 log. The LSN is exported in "cycle:basic block" format. 10 What: /sys/fs/xfs/<disk>/log/log_tail_lsn 15 The log sequence number (LSN) of the current tail of the 16 log. The LSN is exported in "cycle:basic block" format. 18 What: /sys/fs/xfs/<disk>/log/reserve_grant_head 23 The current state of the log reserve grant head. It 24 represents the total log reservation of all currently 29 What: /sys/fs/xfs/<disk>/log/write_grant_head [all …]
|
/kernel/linux/linux-5.10/Documentation/ABI/stable/ |
D | sysfs-firmware-opal-elog | 5 This directory exposes error log entries retrieved 8 Each error log is identified by a unique ID and will 11 Each log entry has a directory in /sys/firmware/opal/elog. 15 Linux if there is no room for more log entries. 17 In the event that Linux has retrieved the log entries 19 the service processor needs more room for log entries, 20 the only remaining copy of a log message may be in 26 The service processor may be able to store more log 31 The raw log format is a binary format. We currently 38 For each log entry (directory), there are the following [all …]
|