| /linux-6.15/net/sunrpc/ |
| H A D | svcauth.c | 46 struct auth_ops *aops; in svc_get_auth_ops() local 52 if (aops != NULL && !try_module_get(aops->owner)) in svc_get_auth_ops() 53 aops = NULL; in svc_get_auth_ops() 55 return aops; in svc_get_auth_ops() 61 module_put(aops->owner); in svc_put_auth_ops() 78 struct auth_ops *aops; in svc_authenticate() local 91 if (aops == NULL) { in svc_authenticate() 99 rqstp->rq_authop = aops; in svc_authenticate() 133 if (aops) { in svc_authorise() 135 svc_put_auth_ops(aops); in svc_authorise() [all …]
|
| /linux-6.15/fs/freevxfs/ |
| H A D | vxfs_inode.c | 254 const struct address_space_operations *aops; in vxfs_iget() local 272 aops = &vxfs_immed_aops; in vxfs_iget() 274 aops = &vxfs_aops; in vxfs_iget() 278 ip->i_mapping->a_ops = aops; in vxfs_iget() 282 ip->i_mapping->a_ops = aops; in vxfs_iget()
|
| /linux-6.15/include/sound/ |
| H A D | hda_component.h | 22 const struct drm_audio_component_audio_ops *aops, 49 const struct drm_audio_component_audio_ops *aops, in snd_hdac_acomp_init() argument
|
| /linux-6.15/drivers/gpu/drm/i915/gem/ |
| H A D | i915_gem_shmem.c | 421 const struct address_space_operations *aops = mapping->a_ops; in shmem_pwrite() local 480 err = aops->write_begin(obj->base.filp, mapping, pos, len, in shmem_pwrite() 491 err = aops->write_end(obj->base.filp, mapping, pos, len, in shmem_pwrite() 657 const struct address_space_operations *aops; in i915_gem_object_create_shmem_from_data() local 669 aops = file->f_mapping->a_ops; in i915_gem_object_create_shmem_from_data() 676 err = aops->write_begin(file, file->f_mapping, pos, len, in i915_gem_object_create_shmem_from_data() 683 err = aops->write_end(file, file->f_mapping, pos, len, len, in i915_gem_object_create_shmem_from_data()
|
| /linux-6.15/sound/hda/ |
| H A D | hdac_component.c | 253 const struct drm_audio_component_audio_ops *aops) in snd_hdac_acomp_register_notifier() argument 258 bus->audio_component->audio_ops = aops; in snd_hdac_acomp_register_notifier() 283 const struct drm_audio_component_audio_ops *aops, in snd_hdac_acomp_init() argument 299 acomp->audio_ops = aops; in snd_hdac_acomp_init()
|
| /linux-6.15/fs/f2fs/ |
| H A D | verity.c | 75 const struct address_space_operations *aops = mapping->a_ops; in pagecache_write() local 87 res = aops->write_begin(NULL, mapping, pos, n, &folio, &fsdata); in pagecache_write() 93 res = aops->write_end(NULL, mapping, pos, n, n, folio, fsdata); in pagecache_write()
|
| /linux-6.15/fs/ext4/ |
| H A D | verity.c | 71 const struct address_space_operations *aops = mapping->a_ops; in pagecache_write() local 83 res = aops->write_begin(NULL, mapping, pos, n, &folio, &fsdata); in pagecache_write() 89 res = aops->write_end(NULL, mapping, pos, n, n, folio, fsdata); in pagecache_write()
|
| /linux-6.15/fs/gfs2/ |
| H A D | Makefile | 6 aops.o dentry.o export.o file.o \
|
| /linux-6.15/mm/ |
| H A D | readahead.c | 148 const struct address_space_operations *aops = rac->mapping->a_ops; in read_pages() local 159 if (aops->readahead) { in read_pages() 160 aops->readahead(rac); in read_pages() 170 aops->read_folio(rac->file, folio); in read_pages()
|
| H A D | truncate.c | 137 const struct address_space_operations *aops = folio->mapping->a_ops; in folio_invalidate() local 139 if (aops->invalidate_folio) in folio_invalidate() 140 aops->invalidate_folio(folio, offset, length); in folio_invalidate()
|
| /linux-6.15/fs/ocfs2/ |
| H A D | Makefile | 13 aops.o \
|
| /linux-6.15/include/linux/sunrpc/ |
| H A D | svcauth.h | 158 extern int svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops);
|
| /linux-6.15/fs/ |
| H A D | buffer.c | 2483 const struct address_space_operations *aops = mapping->a_ops; in generic_cont_expand_simple() local 2492 err = aops->write_begin(NULL, mapping, size, 0, &folio, &fsdata); in generic_cont_expand_simple() 2496 err = aops->write_end(NULL, mapping, size, 0, 0, folio, fsdata); in generic_cont_expand_simple() 2508 const struct address_space_operations *aops = mapping->a_ops; in cont_expand_zero() local 2528 err = aops->write_begin(file, mapping, curpos, len, in cont_expand_zero() 2533 err = aops->write_end(file, mapping, curpos, len, len, in cont_expand_zero() 2561 err = aops->write_begin(file, mapping, curpos, len, in cont_expand_zero() 2566 err = aops->write_end(file, mapping, curpos, len, len, in cont_expand_zero()
|
| H A D | namei.c | 5470 const struct address_space_operations *aops = mapping->a_ops; in page_symlink() local 5480 err = aops->write_begin(NULL, mapping, 0, len-1, &folio, &fsdata); in page_symlink() 5488 err = aops->write_end(NULL, mapping, 0, len - 1, len - 1, in page_symlink()
|
| /linux-6.15/sound/soc/codecs/ |
| H A D | hdac_hdmi.c | 1752 static struct drm_audio_component_audio_ops aops = { variable 1988 aops.audio_ptr = hdev; in hdmi_codec_probe() 1989 ret = snd_hdac_acomp_register_notifier(hdev->bus, &aops); in hdmi_codec_probe()
|
| /linux-6.15/Documentation/filesystems/ |
| H A D | locking.rst | 482 highmem, fs/buffer.c, and fs/ntfs/aops.c are providing these. Block devices
|