/fs/notify/inotify/ |
D | inotify.c | 675 struct inotify_watch *old; in inotify_find_watch() local 681 old = inode_find_handle(inode, ih); in inotify_find_watch() 682 if (unlikely(old)) { in inotify_find_watch() 683 get_inotify_watch(old); /* caller must put watch */ in inotify_find_watch() 684 *watchp = old; in inotify_find_watch() 685 ret = old->wd; in inotify_find_watch() 706 struct inotify_watch *old; in inotify_find_update_watch() local 725 old = inode_find_handle(inode, ih); in inotify_find_update_watch() 726 if (unlikely(!old)) { in inotify_find_update_watch() 732 old->mask |= mask; in inotify_find_update_watch() [all …]
|
/fs/ |
D | inode.c | 680 struct inode * old; in get_new_inode() local 684 old = find_inode(sb, head, test, data); in get_new_inode() 685 if (!old) { in get_new_inode() 704 __iget(old); in get_new_inode() 707 inode = old; in get_new_inode() 728 struct inode * old; in get_new_inode_fast() local 732 old = find_inode_fast(sb, head, ino); in get_new_inode_fast() 733 if (!old) { in get_new_inode_fast() 750 __iget(old); in get_new_inode_fast() 753 inode = old; in get_new_inode_fast() [all …]
|
D | namespace.c | 552 static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root, in clone_mnt() argument 555 struct super_block *sb = old->mnt_sb; in clone_mnt() 556 struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname); in clone_mnt() 562 mnt->mnt_group_id = old->mnt_group_id; in clone_mnt() 570 mnt->mnt_flags = old->mnt_flags; in clone_mnt() 578 list_add(&mnt->mnt_slave, &old->mnt_slave_list); in clone_mnt() 579 mnt->mnt_master = old; in clone_mnt() 582 if ((flag & CL_PROPAGATION) || IS_MNT_SHARED(old)) in clone_mnt() 583 list_add(&mnt->mnt_share, &old->mnt_share); in clone_mnt() 584 if (IS_MNT_SLAVE(old)) in clone_mnt() [all …]
|
D | super.c | 363 struct super_block *old; in sget() local 369 list_for_each_entry(old, &type->fs_supers, s_instances) { in sget() 370 if (!test(old, data)) in sget() 372 if (!grab_super(old)) in sget() 378 return old; in sget()
|
D | select.c | 133 struct poll_table_page *old; in poll_freewait() local 140 old = p; in poll_freewait() 142 free_page((unsigned long) old); in poll_freewait()
|
/fs/isofs/ |
D | dir.c | 18 char * old = de->name; in isofs_name_translate() local 23 unsigned char c = old[i]; in isofs_name_translate() 31 if (c == '.' && i == len - 3 && old[i + 1] == ';' && old[i + 2] == '1') in isofs_name_translate() 35 if (c == ';' && i == len - 2 && old[i + 1] == '1') in isofs_name_translate()
|
/fs/jffs2/ |
D | nodelist.c | 456 void jffs2_del_ino_cache(struct jffs2_sb_info *c, struct jffs2_inode_cache *old) in jffs2_del_ino_cache() argument 461 BUG_ON(old->xref); in jffs2_del_ino_cache() 463 dbg_inocache("del %p (ino #%u)\n", old, old->ino); in jffs2_del_ino_cache() 466 prev = &c->inocache_list[old->ino % INOCACHE_HASHSIZE]; in jffs2_del_ino_cache() 468 while ((*prev) && (*prev)->ino < old->ino) { in jffs2_del_ino_cache() 471 if ((*prev) == old) { in jffs2_del_ino_cache() 472 *prev = old->next; in jffs2_del_ino_cache() 480 if (old->state != INO_STATE_READING && old->state != INO_STATE_CLEARING) in jffs2_del_ino_cache() 481 jffs2_free_inode_cache(old); in jffs2_del_ino_cache()
|
D | nodelist.h | 315 jdev->old = cpu_to_je16(old_encode_dev(rdev)); in jffs2_encode_dev() 316 return sizeof(jdev->old); in jffs2_encode_dev() 364 void jffs2_del_ino_cache(struct jffs2_sb_info *c, struct jffs2_inode_cache *old);
|
D | fs.c | 315 if (f->metadata->size != sizeof(jdev.old) && in jffs2_iget() 327 if (f->metadata->size == sizeof(jdev.old)) in jffs2_iget() 328 rdev = old_decode_dev(je16_to_cpu(jdev.old)); in jffs2_iget()
|
/fs/coda/ |
D | upcall.c | 575 static void coda_block_signals(sigset_t *old) in coda_block_signals() argument 578 *old = current->blocked; in coda_block_signals() 589 static void coda_unblock_signals(sigset_t *old) in coda_unblock_signals() argument 592 current->blocked = *old; in coda_unblock_signals() 612 sigset_t old; in coda_waitfor_upcall() local 615 coda_block_signals(&old); in coda_waitfor_upcall() 632 coda_unblock_signals(&old); in coda_waitfor_upcall() 647 coda_unblock_signals(&old); in coda_waitfor_upcall()
|
/fs/btrfs/ |
D | file.c | 384 struct btrfs_file_extent_item old; in btrfs_drop_extents() local 494 read_extent_buffer(leaf, &old, (unsigned long)extent, in btrfs_drop_extents() 495 sizeof(old)); in btrfs_drop_extents() 523 disk_bytenr = le64_to_cpu(old.disk_bytenr); in btrfs_drop_extents() 527 le64_to_cpu(old.disk_num_bytes), in btrfs_drop_extents() 616 write_extent_buffer(leaf, &old, in btrfs_drop_extents() 617 (unsigned long)extent, sizeof(old)); in btrfs_drop_extents() 626 le64_to_cpu(old.offset) + end - key.offset); in btrfs_drop_extents() 627 WARN_ON(le64_to_cpu(old.num_bytes) < in btrfs_drop_extents() 659 u64 old_disk_bytenr = le64_to_cpu(old.disk_bytenr); in btrfs_drop_extents() [all …]
|
D | transaction.c | 747 struct extent_buffer *old; in create_pending_snapshot() local 768 old = btrfs_lock_root_node(root); in create_pending_snapshot() 769 btrfs_cow_block(trans, root, old, NULL, 0, &old, 0); in create_pending_snapshot() 771 btrfs_copy_root(trans, root, old, &tmp, objectid); in create_pending_snapshot() 772 btrfs_tree_unlock(old); in create_pending_snapshot() 773 free_extent_buffer(old); in create_pending_snapshot()
|
D | extent_io.h | 63 unsigned long old, unsigned long bits); 65 unsigned long old, unsigned long bits);
|
/fs/affs/ |
D | bitmap.c | 345 u32 old, new; in affs_init_bitmap() local 348 old = be32_to_cpu(((__be32 *)bh->b_data)[offset]); in affs_init_bitmap() 349 new = old & mask; in affs_init_bitmap()
|
D | Changes | 18 blocks (some very old SCSI drives). 123 - Sets the NOEXEC flag in read_super() for old file 177 the old link days ... 195 - Removed support for old-style directory reads.
|
/fs/nfsd/ |
D | nfs3xdr.c | 457 char *old, *new; in nfs3svc_decode_symlinkargs() local 478 old = (char*)p; in nfs3svc_decode_symlinkargs() 480 avail = vec->iov_len - (old - (char*)vec->iov_base); in nfs3svc_decode_symlinkargs() 481 while (len && avail && *old) { in nfs3svc_decode_symlinkargs() 482 *new++ = *old++; in nfs3svc_decode_symlinkargs() 491 old = page_address(rqstp->rq_arg.pages[0]); in nfs3svc_decode_symlinkargs() 493 while (len && avail && *old) { in nfs3svc_decode_symlinkargs() 494 *new++ = *old++; in nfs3svc_decode_symlinkargs()
|
D | nfs4idmap.c | 290 idtoname_update(struct ent *new, struct ent *old) in idtoname_update() argument 293 &new->h, &old->h, in idtoname_update() 452 nametoid_update(struct ent *new, struct ent *old) in nametoid_update() argument 455 &new->h, &old->h, in nametoid_update()
|
D | export.c | 88 static struct svc_expkey *svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old); 292 svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old) in svc_expkey_update() argument 304 &old->h, hash); in svc_expkey_update() 359 struct svc_export *old); 759 svc_export_update(struct svc_export *new, struct svc_export *old) in svc_export_update() argument 763 hash = hash_ptr(old->ex_client, EXPORT_HASHBITS); in svc_export_update() 764 hash ^= hash_ptr(old->ex_path.dentry, EXPORT_HASHBITS); in svc_export_update() 765 hash ^= hash_ptr(old->ex_path.mnt, EXPORT_HASHBITS); in svc_export_update() 768 &old->h, in svc_export_update()
|
/fs/adfs/ |
D | dir_f.h | 52 } old; member
|
/fs/ntfs/ |
D | Kconfig | 16 the old NTFS code starting with Linux 2.5.11. A backport to 68 scratch of the NTFS support), it should be noted that the old NTFS
|
/fs/bfs/ |
D | dir.c | 165 static int bfs_link(struct dentry *old, struct inode *dir, in bfs_link() argument 168 struct inode *inode = old->d_inode; in bfs_link()
|
/fs/ext3/ |
D | dir.c | 296 struct fname * old = fname; in free_rb_tree_fname() local 298 kfree (old); in free_rb_tree_fname()
|
/fs/ext4/ |
D | dir.c | 298 struct fname *old = fname; in free_rb_tree_fname() local 300 kfree(old); in free_rb_tree_fname()
|
/fs/cifs/ |
D | Kconfig | 54 establish sessions with some old SMB servers. 60 have a need to access old SMB servers (and are on a private
|
/fs/ncpfs/ |
D | ioctl.c | 745 void* old; in __ncp_ioctl() local 774 old = server->priv.data; in __ncp_ioctl() 779 kfree(old); in __ncp_ioctl()
|