Home
last modified time | relevance | path

Searched refs:sops (Results 1 – 9 of 9) sorted by relevance

/f-stack/freebsd/contrib/openzfs/config/
H A Dkernel-evict-inode.m43 dnl # The sops->delete_inode() and sops->clear_inode() callbacks have
4 dnl # replaced by a single sops->evict_inode() callback.
10 static struct super_operations sops __attribute__ ((unused)) = {
17 AC_MSG_CHECKING([whether sops->evict_inode() exists])
20 AC_DEFINE(HAVE_EVICT_INODE, 1, [sops->evict_inode() exists])
H A Dkernel-dirty-inode.m43 dnl # The sops->dirty_inode() callbacks were updated to take a flags
14 sops __attribute__ ((unused)) = {
21 AC_MSG_CHECKING([whether sops->dirty_inode() wants flags])
25 [sops->dirty_inode() wants flags])
H A Dkernel-show-options.m412 static struct super_operations sops __attribute__ ((unused)) = {
19 AC_MSG_CHECKING([whether sops->show_options() wants dentry])
23 ZFS_LINUX_TEST_ERROR([sops->show_options()])
/f-stack/freebsd/contrib/openzfs/module/icp/core/
H A Dkcf_callprov.c707 pd, &sops->so_mech); in common_submit_request()
710 sops->so_key, sops->so_templ, rhndl); in common_submit_request()
715 pd, &sops->so_mech); in common_submit_request()
718 &sops->so_mech, sops->so_key, sops->so_templ, in common_submit_request()
729 sops->so_data, sops->so_signature, rhndl); in common_submit_request()
745 pd, &sops->so_mech); in common_submit_request()
748 &sops->so_mech, sops->so_key, sops->so_data, in common_submit_request()
749 sops->so_templ, sops->so_signature, rhndl); in common_submit_request()
758 &sops->so_mech, sops->so_key, sops->so_data, in common_submit_request()
759 sops->so_templ, sops->so_signature, rhndl); in common_submit_request()
[all …]
H A Dkcf_sched.c391 kcf_sign_ops_params_t *sops = &params->rp_u.sign_params; in can_resubmit() local
393 sops->so_mech.cm_type = sops->so_framework_mechtype; in can_resubmit()
394 *mech1 = &sops->so_mech; in can_resubmit()
/f-stack/freebsd/contrib/openzfs/module/icp/include/sys/crypto/
H A Dops_impl.h444 sops->so_sid = _sid; \
446 sops->so_mech = *mechp; \
449 sops->so_key = _key; \
450 sops->so_data = _data; \
451 sops->so_signature = _signature; \
452 sops->so_templ = _templ; \
525 sops->so_sid_ptr = _sid_ptr; \
526 sops->so_sid = _sid; \
528 sops->so_pin = _pin; \
529 sops->so_pin_len = _pin_len; \
[all …]
/f-stack/freebsd/kern/
H A Dsysv_sem.c1094 struct sembuf *sops; member
1106 struct sembuf *sops; in sys_semop() local
1118 sops = NULL; in sys_semop()
1135 sops = small_sops; in sys_semop()
1153 sops = malloc(nsops * sizeof(*sops), M_TEMP, M_WAITOK); in sys_semop()
1155 if ((error = copyin(uap->sops, sops, nsops * sizeof(sops[0]))) != 0) { in sys_semop()
1157 uap->sops, sops, nsops * sizeof(sops[0]))); in sys_semop()
1185 sopptr = &sops[i]; in sys_semop()
1219 sopptr = &sops[i]; in sys_semop()
1390 sopptr = &sops[i]; in sys_semop()
[all …]
H A Dsystrace_args.c1090 uarg[1] = (intptr_t) p->sops; /* struct sembuf * */ in systrace_args()
/f-stack/freebsd/sys/
H A Dsysproto.h596 char sops_l_[PADL_(struct sembuf *)]; struct sembuf * sops; char sops_r_[PADR_(struct sembuf *)]; member