Home
last modified time | relevance | path

Searched refs:validator (Results 1 – 8 of 8) sorted by relevance

/linux-6.1.9/drivers/md/persistent-data/
Ddm-block-manager.c346 struct dm_block_validator *validator; member
357 aux->validator = NULL; in dm_block_manager_alloc_callback()
364 if (aux->validator) { in dm_block_manager_write_callback()
365 aux->validator->prepare_for_write(aux->validator, (struct dm_block *) buf, in dm_block_manager_write_callback()
434 if (unlikely(!aux->validator)) { in dm_bm_validate_buffer()
444 aux->validator = v; in dm_bm_validate_buffer()
446 if (unlikely(aux->validator != v)) { in dm_bm_validate_buffer()
448 aux->validator->name, v ? v->name : "NULL", in dm_bm_validate_buffer()
583 aux->validator = v; in dm_bm_write_lock_zero()
/linux-6.1.9/Documentation/gpu/
Dvc4.rst72 :doc: Command list validator for VC4.
80 Shader validator for VC4
83 :doc: Shader validator for VC4.
/linux-6.1.9/kernel/trace/
Dtrace_events_user.c424 struct user_event_validator *validator, *next; in user_event_destroy_validators() local
427 list_for_each_entry_safe(validator, next, head, link) { in user_event_destroy_validators()
428 list_del(&validator->link); in user_event_destroy_validators()
429 kfree(validator); in user_event_destroy_validators()
448 struct user_event_validator *validator; in user_event_add_field() local
471 validator = kmalloc(sizeof(*validator), GFP_KERNEL); in user_event_add_field()
473 if (!validator) { in user_event_add_field()
478 validator->flags = validator_flags; in user_event_add_field()
479 validator->offset = offset; in user_event_add_field()
482 list_add_tail(&validator->link, &user->validators); in user_event_add_field()
[all …]
/linux-6.1.9/Documentation/locking/
Dlockdep-design.rst1 Runtime locking correctness validator
11 The basic object the validator operates upon is a 'class' of locks.
19 The validator tracks the 'usage state' of lock-classes, and it tracks
25 dependency just means the order ever happened. The validator maintains a
27 the validator will shoot a splat if incorrect.
41 The validator tracks lock-class usage history and divides the usage into
134 The validator detects and reports lock usage that violates these
151 validator will find such dependency circle in arbitrary complexity,
153 operations; the validator will still find whether these locks can be
169 kernel: when acquiring a new lock, the validator checks whether there is
[all …]
/linux-6.1.9/sound/usb/
Dclock.c43 bool (*validator)(void *, int, int), in find_uac_clock_desc()
50 if (validator(cs, id, proto)) in find_uac_clock_desc()
78 #define DEFINE_FIND_HELPER(name, obj, validator, type2, type3) \ argument
81 return find_uac_clock_desc(chip->ctrl_intf, id, validator, \
/linux-6.1.9/Documentation/core-api/irq/
Dirqflags-tracing.rst33 trace_hardirqs_off()/trace_hardirqs_on() functions. The lock validator
48 turn itself off. I.e. the lock validator will still be reliable. There
/linux-6.1.9/Documentation/filesystems/
Daffs.rst238 no way to fix a garbled filesystem without an Amiga (disk validator)
/linux-6.1.9/Documentation/dev-tools/
Dtesting-overview.rst105 * lockdep is a locking correctness validator. See