Home
last modified time | relevance | path

Searched refs:aops (Results 1 – 17 of 17) sorted by relevance

/linux-6.1.9/net/sunrpc/
Dsvcauth.c45 struct auth_ops *aops; in svc_get_auth_ops() local
50 aops = rcu_dereference(authtab[flavor]); in svc_get_auth_ops()
51 if (aops != NULL && !try_module_get(aops->owner)) in svc_get_auth_ops()
52 aops = NULL; in svc_get_auth_ops()
54 return aops; in svc_get_auth_ops()
58 svc_put_auth_ops(struct auth_ops *aops) in svc_put_auth_ops() argument
60 module_put(aops->owner); in svc_put_auth_ops()
67 struct auth_ops *aops; in svc_authenticate() local
75 aops = svc_get_auth_ops(flavor); in svc_authenticate()
76 if (aops == NULL) { in svc_authenticate()
[all …]
/linux-6.1.9/fs/freevxfs/
Dvxfs_inode.c257 const struct address_space_operations *aops; in vxfs_iget() local
275 aops = &vxfs_immed_aops; in vxfs_iget()
277 aops = &vxfs_aops; in vxfs_iget()
281 ip->i_mapping->a_ops = aops; in vxfs_iget()
285 ip->i_mapping->a_ops = aops; in vxfs_iget()
/linux-6.1.9/include/sound/
Dhda_component.h22 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.1.9/sound/hda/
Dhdac_component.c254 const struct drm_audio_component_audio_ops *aops) in snd_hdac_acomp_register_notifier() argument
259 bus->audio_component->audio_ops = aops; in snd_hdac_acomp_register_notifier()
284 const struct drm_audio_component_audio_ops *aops, in snd_hdac_acomp_init() argument
300 acomp->audio_ops = aops; in snd_hdac_acomp_init()
/linux-6.1.9/drivers/gpu/drm/i915/gem/
Di915_gem_shmem.c412 const struct address_space_operations *aops = mapping->a_ops; in shmem_pwrite() local
470 err = aops->write_begin(obj->base.filp, mapping, offset, len, in shmem_pwrite()
481 err = aops->write_end(obj->base.filp, mapping, offset, len, in shmem_pwrite()
626 const struct address_space_operations *aops; in i915_gem_object_create_shmem_from_data() local
638 aops = file->f_mapping->a_ops; in i915_gem_object_create_shmem_from_data()
645 err = aops->write_begin(file, file->f_mapping, offset, len, in i915_gem_object_create_shmem_from_data()
654 err = aops->write_end(file, file->f_mapping, offset, len, len, in i915_gem_object_create_shmem_from_data()
/linux-6.1.9/fs/f2fs/
Dverity.c75 const struct address_space_operations *aops = mapping->a_ops; in pagecache_write() local
87 res = aops->write_begin(NULL, mapping, pos, n, &page, &fsdata); in pagecache_write()
93 res = aops->write_end(NULL, mapping, pos, n, n, page, fsdata); in pagecache_write()
/linux-6.1.9/fs/ext4/
Dverity.c73 const struct address_space_operations *aops = mapping->a_ops; in pagecache_write() local
85 res = aops->write_begin(NULL, mapping, pos, n, &page, &fsdata); in pagecache_write()
91 res = aops->write_end(NULL, mapping, pos, n, n, page, fsdata); in pagecache_write()
/linux-6.1.9/fs/ntfs/
DMakefile6 ntfs-y := aops.o attrib.o collate.o compress.o debug.o dir.o file.o \
/linux-6.1.9/fs/gfs2/
DMakefile6 aops.o dentry.o export.o file.o \
/linux-6.1.9/mm/
Dreadahead.c149 const struct address_space_operations *aops = rac->mapping->a_ops; in read_pages() local
160 if (aops->readahead) { in read_pages()
161 aops->readahead(rac); in read_pages()
181 aops->read_folio(rac->file, folio); in read_pages()
Dtruncate.c156 const struct address_space_operations *aops = folio->mapping->a_ops; in folio_invalidate() local
158 if (aops->invalidate_folio) in folio_invalidate()
159 aops->invalidate_folio(folio, offset, length); in folio_invalidate()
/linux-6.1.9/fs/ocfs2/
DMakefile13 aops.o \
/linux-6.1.9/include/linux/sunrpc/
Dsvcauth.h155 extern int svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops);
/linux-6.1.9/fs/
Dbuffer.c2338 const struct address_space_operations *aops = mapping->a_ops; in generic_cont_expand_simple() local
2347 err = aops->write_begin(NULL, mapping, size, 0, &page, &fsdata); in generic_cont_expand_simple()
2351 err = aops->write_end(NULL, mapping, size, 0, 0, page, fsdata); in generic_cont_expand_simple()
2363 const struct address_space_operations *aops = mapping->a_ops; in cont_expand_zero() local
2383 err = aops->write_begin(file, mapping, curpos, len, in cont_expand_zero()
2388 err = aops->write_end(file, mapping, curpos, len, len, in cont_expand_zero()
2416 err = aops->write_begin(file, mapping, curpos, len, in cont_expand_zero()
2421 err = aops->write_end(file, mapping, curpos, len, len, in cont_expand_zero()
Dnamei.c5111 const struct address_space_operations *aops = mapping->a_ops; in page_symlink() local
5121 err = aops->write_begin(NULL, mapping, 0, len-1, &page, &fsdata); in page_symlink()
5129 err = aops->write_end(NULL, mapping, 0, len-1, len-1, in page_symlink()
/linux-6.1.9/sound/soc/codecs/
Dhdac_hdmi.c1745 static struct drm_audio_component_audio_ops aops = { variable
1982 aops.audio_ptr = hdev; in hdmi_codec_probe()
1983 ret = snd_hdac_acomp_register_notifier(hdev->bus, &aops); in hdmi_codec_probe()
/linux-6.1.9/Documentation/filesystems/
Dlocking.rst463 highmem, fs/buffer.c, and fs/ntfs/aops.c are providing these. Block devices