aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p/vfs_inode.c
AgeCommit message (Expand)AuthorFilesLines
2024-04-22 fs/9p: mitigate inode collisionsEric Van Hensbergen1-8/+29
2024-04-09fs/9p: remove erroneous nlink init from legacy stat2inodeEric Van Hensbergen1-2/+0
2024-03-28fs/9p: translate O_TRUNC into OTRUNCJoakim Sindholt1-0/+3
2024-03-28fs/9p: only translate RWX permissions for plain 9P2000Joakim Sindholt1-1/+1
2024-03-25fs/9p: fix uninitialized values during inode evictEric Van Hensbergen1-6/+10
2024-01-26fs/9p: simplify iget to remove unnecessary pathsEric Van Hensbergen1-77/+21
2024-01-26fs/9p: rework qid2ino logicEric Van Hensbergen1-24/+2
2024-01-26fs/9p: Eliminate now unused v9fs_get_inodeEric Van Hensbergen1-30/+0
2024-01-039p: Fix initialisation of netfs_inode for 9pDavid Howells1-3/+3
2023-12-289p: Use netfslib read/write_iterDavid Howells1-3/+2
2023-12-28netfs: Optimise away reads above the point at which there can be no dataDavid Howells1-1/+1
2023-12-24netfs: Move pinning-for-writeback from fscache to netfsDavid Howells1-2/+1
2023-10-189p: convert to new timestamp accessorsJeff Layton1-3/+3
2023-08-28Merge tag 'v6.6-vfs.ctime' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Linus Torvalds1-4/+4
2023-08-09fs: pass the request_mask to generic_fillattrJeff Layton1-2/+2
2023-07-209p: remove dead stores (variable set again without being read)Dominique Martinet1-6/+0
2023-07-139p: convert to ctime accessor functionsJeff Layton1-2/+2
2023-05-05Merge tag 'net-6.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/netd...Linus Torvalds1-1/+0
2023-05-049p: Remove INET dependencyJason Andryuk1-1/+0
2023-04-28fs/9p: Fix bit operation logic errorEric Van Hensbergen1-1/+1
2023-04-09fs/9p: Rework cache modes and add new options to DocumentationEric Van Hensbergen1-11/+23
2023-03-27fs/9p: remove writeback fid and fix per-file modesEric Van Hensbergen1-30/+15
2023-03-27fs/9p: Consolidate file operations and add readahead and writebackEric Van Hensbergen1-21/+23
2023-03-01Merge tag '9p-6.3-for-linus-part1' of git://git.kernel.org/pub/scm/linux/kern...Linus Torvalds1-2/+1
2023-02-23fs/9p: Expand setup of writeback cache to all levelsEric Van Hensbergen1-2/+1
2023-01-19fs: port inode_init_owner() to mnt_idmapChristian Brauner1-1/+1
2023-01-19fs: port ->rename() to pass mnt_idmapChristian Brauner1-2/+2
2023-01-19fs: port ->mknod() to pass mnt_idmapChristian Brauner1-2/+2
2023-01-19fs: port ->mkdir() to pass mnt_idmapChristian Brauner1-2/+2
2023-01-19fs: port ->symlink() to pass mnt_idmapChristian Brauner1-2/+2
2023-01-19fs: port ->create() to pass mnt_idmapChristian Brauner1-2/+2
2023-01-19fs: port ->getattr() to pass mnt_idmapChristian Brauner1-4/+4
2023-01-19fs: port ->setattr() to pass mnt_idmapChristian Brauner1-4/+4
2022-12-029p/fs: Remove unneeded idr.h #includeChristophe JAILLET1-1/+0
2022-07-029p fid refcount: cleanup p9_fid_put callsDominique Martinet1-37/+24
2022-07-029p fid refcount: add p9_fid_get/put wrappersDominique Martinet1-24/+24
2022-06-159p: fix fid refcount leak in v9fs_vfs_get_linkDominique Martinet1-4/+4
2022-06-10netfs: Further cleanups after struct netfs_inode wrapper introducedLinus Torvalds1-1/+2
2022-06-09netfs: Fix gcc-12 warning by embedding vfs inode in netfs_i_contextDavid Howells1-2/+2
2022-03-31Merge tag 'netfs-prep-20220318' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds1-3/+10
2022-03-22fs: allocate inode by using alloc_inode_sb()Muchun Song1-1/+1
2022-03-18netfs: Add a netfs inode contextDavid Howells1-3/+10
2022-01-109p: Copy local writes to the cache when writing to the serverDavid Howells1-0/+4
2022-01-109p: Use fscache indexing rewrite and reenable cachingDavid Howells1-9/+13
2021-11-049p: fix a bunch of checkpatch warningsDominique Martinet1-5/+9
2021-11-039p p9mode2perm: remove useless strlcpy and check sscanf return codeDominique Martinet1-4/+9
2021-11-039p: fix file headersDominique Martinet1-2/+0
2021-10-049p: Fix a bunch of kerneldoc warnings shown up by W=1David Howells1-8/+16
2021-03-08new helper: inode_wrong_type()Al Viro1-2/+2
2021-02-27Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-12/+9
2021-02-239p: fix misuse of sscanf() in v9fs_stat2inode()Al Viro1-12/+9
2021-01-24fs: make helpers idmap mount awareChristian Brauner1-11/+15
2021-01-24stat: handle idmapped mountsChristian Brauner1-2/+2
2021-01-24attr: handle idmapped mountsChristian Brauner1-2/+2
2021-01-24inode: make init and permission helpers idmapped mount awareChristian Brauner1-1/+1
2020-11-199p: add refcount to p9_fid structJianyong Wu1-8/+29
2020-11-03fs/9p: track open fidsGreg Kurz1-1/+5
2020-11-03fs/9p: fix create-unlink-getattr idiomEric Van Hensbergen1-0/+4
2020-07-319p: Remove unneeded cast from memory allocationLi Heng1-2/+1
2020-07-199p: remove unused code in 9pJianyong Wu1-53/+0
2020-07-199p: retrieve fid from file when file instance exist.Jianyong Wu1-2/+7
2020-03-279p: Remove unneeded semicolonzhengbin1-1/+1
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 188Thomas Gleixner1-16/+1
2019-05-019p: switch to ->free_inode()Al Viro1-8/+2
2019-03-039p: use inode->i_lock to protect i_size_write() under 32-bitHou Tao1-12/+11
2018-07-12get rid of 'opened' argument of ->atomic_open() - part 3Al Viro1-2/+1
2018-07-12getting rid of 'opened' argument of ->atomic_open() - part 1Al Viro1-1/+1
2018-07-12introduce FMODE_CREATED and switch to itAl Viro1-1/+1
2018-05-229p: unify paths in v9fs_vfs_lookup()Al Viro1-20/+15
2018-04-059p: don't maintain dir i_nlink if the exported fs doesn't eitherEryu Guan1-4/+22
2017-10-23fs/9p: Compare qid.path in v9fs_test_inodeTuomas Tynkkynen1-0/+3
2017-03-03Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-5/+5
2017-03-02statx: Add a system call to make enhanced file info availableDavid Howells1-4/+6
2017-01-129p: constify ->d_name handlingAl Viro1-5/+5
2016-12-09vfs: remove ".readlink = generic_readlink" assignmentsMiklos Szeredi1-1/+0
2016-10-10Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-2/+6
2016-10-10Merge remote-tracking branch 'ovl/rename2' into for-linusAl Viro1-1/+5
2016-09-27fs: Replace CURRENT_TIME with current_time() for inode timestampsDeepa Dinamani1-1/+1
2016-09-27fs: rename "rename2" i_op to "rename"Miklos Szeredi1-2/+2
2016-09-27fs: make remaining filesystems use .rename2Miklos Szeredi1-3/+7
2016-09-22fs: Give dentry to inode_change_ok() instead of inodeJan Kara1-1/+1
2016-08-039p: use clone_fid()Al Viro1-1/+1
2016-08-039p: fix braino introduced in "9p: new helper - v9fs_parent_fid()"Al Viro1-2/+2
2016-07-28Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-5/+5
2016-07-05Use the right predicate in ->atomic_open() instancesAl Viro1-1/+1
2016-05-299p: new helper - v9fs_parent_fid()Al Viro1-5/+5
2016-04-10don't bother with ->d_inode->i_sb - it's always equal to ->d_sbAl Viro1-1/+1
2016-01-12Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-1/+1
2016-01-11Merge branch 'work.symlinks' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-8/+16
2016-01-09fs/9p: use fscache mutex rather than spinlockSasha Levin1-1/+1
2015-12-30switch ->get_link() to delayed_call, kill ->put_link()Al Viro1-4/+5
2015-12-08replace ->follow_link() with new method that could stay in RCU modeAl Viro1-5/+12
2015-12-089p: ->evict_inode() should kick out ->i_data, not ->i_mappingAl Viro1-2/+2
2015-11-09fs/9p: remove unnecessary new_valid_dev() checksYaowei Bai1-3/+0
2015-07-129p: don't leave a half-initialized inode sitting aroundAl Viro1-2/+1
2015-05-15get rid of assorted nameidata-related debrisAl Viro1-2/+1
2015-05-10don't pass nameidata to ->follow_link()Al Viro1-1/+1
2015-05-10new ->follow_link() and ->put_link() calling conventionsAl Viro1-6/+7
2015-05-109p: don't bother with __getname() in ->follow_link()Al Viro1-75/+18
2015-05-109p: don't bother with 4K allocation for 24-byte local array...Al Viro1-21/+5
2015-04-15VFS: normal filesystems (and lustre): d_inode() annotationsDavid Howells1-17/+17
2015-02-22VFS: (Scripted) Convert S_ISLNK/DIR/REG(dentry->d_inode) to d_is_*(dentry)David Howells1-1/+1
2014-11-19switch d_materialise_unique() users to d_splice_alias()Al Viro1-1/+1
2014-10-099p: switch to %p[dD]Al Viro1-16/+16
2014-06-08Merge tag 'for-linus-3.16-merge-window' of git://git.kernel.org/pub/scm/linux...Linus Torvalds1-1/+1
2014-06-04fs/9p: kerneldoc fixesFabian Frederick1-3/+3
2014-06-01fs/9p: adjust sscanf parameters accordingly to the variable typesToralf Förster1-1/+1
2014-04-03mm + fs: store shadow entries in page cacheJohannes Weiner1-1/+1
2014-01-109P: introduction of a new cache=mmap model.Dominique Martinet1-7/+15
2013-11-239p: remove useless assignmentGeyslan G. Bem1-1/+1
2013-11-239p: remove unused 'super_block' struct pointerGeyslan G. Bem1-2/+0
2013-10-249p: make v9fs_cache_inode_{get,put,set}_cookie empty inlines for !9P_CACHEFSAl Viro1-6/+0
2013-07-30fs: 9p: use strlcpy instead of strncpyChen Gang1-2/+2
2013-07-07fs/9p: Remove the unused variable "err" in v9fs_vfs_getattr()Gu Zheng1-2/+0
2013-02-289p: make sure ->lookup() adds fid to the right dentryAl Viro1-2/+5
2013-02-289p: untangle ->lookup() a bitAl Viro1-18/+9
2013-02-289p: double iput() in ->lookup() if d_materialise_unique() failsAl Viro1-1/+0
2013-02-289p: v9fs_fid_add() can't fail nowAl Viro1-7/+2
2013-02-25Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebi...Linus Torvalds1-3/+3
2013-02-129p: Modify the stat structures to use kuid_t and kgid_tEric W. Biederman1-3/+3
2013-02-10fs/9p: Don't use O_TRUNC flag in TOPEN and TLOPEN requestAneesh Kumar K.V1-3/+0
2012-09-06fs/9p: avoid debug OOPS when reading a long symlinkJim Meyering1-4/+4
2012-07-14don't pass nameidata to ->create()Al Viro1-1/+1
2012-07-14stop passing nameidata to ->lookup()Al Viro1-4/+4
2012-07-14make finish_no_open() return intAl Viro1-4/+2
2012-07-14kill struct opendataAl Viro1-9/+6
2012-07-14make ->atomic_open() return intAl Viro1-6/+4
2012-07-14->atomic_open() prototype change - pass int * instead of bool *Al Viro1-3/+3
2012-07-149p: implement i_op->atomic_open()Miklos Szeredi1-67/+102
2012-05-06vfs: Rename end_writeback() to clear_inode()Jan Kara1-1/+1
2012-01-10Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/eri...Linus Torvalds1-72/+93
2012-01-05fs/9p: We should not allocate a new inode when creating hardlines.Aneesh Kumar K.V1-19/+24
2012-01-05fs/9p: v9fs_stat2inode should update suid/sgid bits.Aneesh Kumar K.V1-12/+28
2012-01-059p: Reduce object size with CONFIG_NET_9P_DEBUGJoe Perches1-43/+43
2012-01-039p: propagate umode_tAl Viro1-10/+11
2012-01-039p: don't bother with unixmode2p9mode() for link() and symlink()Al Viro1-12/+8
2012-01-03switch ->mknod() to umode_tAl Viro1-1/+1
2012-01-03switch ->create() to umode_tAl Viro1-1/+1
2012-01-03switch vfs_mkdir() and ->mkdir() to umode_tAl Viro1-1/+1
2012-01-03vfs: fix the stupidity with i_dentry in inode destructorsAl Viro1-1/+0
2011-11-02filesystems: add set_nlink()Miklos Szeredi1-2/+2
2011-10-24fs/9p: inode file operation is properly initialized init_special_inodeAneesh Kumar K.V1-2/+0
2011-09-06fs/9p: Always ask new inode in lookup for cache mode disabledAneesh Kumar K.V1-7/+21
2011-09-06fs/9p: Add OS dependent open flags in 9p protocolAneesh Kumar K.V1-1/+15
2011-09-06fs/9p: Don't update file type when updating file attributesAneesh Kumar K.V1-41/+50
2011-09-06fs/9p: Add fid before dentry instantiationAneesh Kumar K.V1-3/+1
2011-07-23fs/9p: add 9P2000.L unlinkat operationAneesh Kumar K.V1-18/+30
2011-07-23fs/9p: add 9P2000.L renameat operationAneesh Kumar K.V1-3/+6
2011-07-23fs/9p: Always ask new inode in createAneesh Kumar K.V1-5/+17
2011-07-23fs/9p: When doing inode lookup compare qid details and inode mode bits.Aneesh Kumar K.V1-3/+33
2011-07-23fs/9p: remove rename work around in 9pAneesh Kumar K.V1-5/+0
2011-07-20no need to check for LOOKUP_OPEN in ->create() instancesAl Viro1-2/+2
2011-07-20don't transliterate lower bits of ->intent.open.flags to FMODE_...Al Viro1-1/+1
2011-05-289p: remove unnecessary dentry_unhash on rmdir, dir renameSage Weil1-4/+0
2011-05-26vfs: push dentry_unhash on rename_dir into file systemsSage Weil1-0/+3
2011-05-26vfs: push dentry_unhash on rmdir into file systemsSage Weil1-0/+1
2011-03-22fs/9p: Add v9fs_dentry2v9sesAneesh Kumar K.V1-3/+3
2011-03-22fs/9p: Attach writeback_fid on first open with WR flagAneesh Kumar K.V1-1/+2
2011-03-22fs/9p: Use truncate_setsize instead of vmtruncateAneesh Kumar K.V1-6/+10
2011-03-22fs/9p: Fix race in initializing writeback fidAneesh Kumar K.V1-0/+4
2011-03-15fs/9p: Writeback dirty data before setattrAneesh Kumar K.V1-0/+4
2011-03-15fs/9p: call vmtruncate before setattr 9p opeationAneesh Kumar K.V1-6/+4
2011-03-15fs/9p: Properly update inode attributes on linkAneesh Kumar K.V1-1/+3
2011-03-15fs/9p: Workaround vfs rename rehash bugAneesh Kumar K.V1-0/+5
2011-03-15fs/9p: Mark directory inode invalid for many directory inode operationsAneesh Kumar K.V1-7/+16
2011-03-15fs/9p: mark inode attribute invalid on rename, unlink and setattrAneesh Kumar K.V1-0/+4
2011-03-15fs/9p: Add support for marking inode attribute invalidAneesh Kumar K.V1-0/+29
2011-03-15fs/9p: Update link count correctly on different file system operationsAneesh Kumar K.V1-4/+28
2011-03-15fs/9p: Move writeback fid to v9fs_inodeAneesh Kumar K.V1-8/+13
2011-03-15fs/9p: Add v9fs_inodeAneesh Kumar K.V1-20/+16
2011-03-15fs/9p: Don't set stat.st_blocks based on nrpagesAneesh Kumar K.V1-3/+4
2011-03-15fs/9p: Add inode hashingAneesh Kumar K.V1-46/+75
2011-03-15fs/9p: Add fid to inode in cached modeAneesh Kumar K.V1-1/+21
2011-03-15fs/9p: set fs cache cookie in create path alsoAneesh Kumar K.V1-0/+4
2011-03-15fs/9p: set the cached file_operations struct during inode initAneesh Kumar K.V1-2/+9
2011-01-12switch 9pAl Viro1-5/+0
2011-01-11fs/9p: Don't set dentry->d_op in create routinesAneesh Kumar K.V1-6/+0
2011-01-11fs/9p: Move dotl inode operations into a seperate fileAneesh Kumar K.V1-859/+6
2011-01-07fs: dcache per-inode inode alias lockingNick Piggin1-2/+2
2011-01-07fs: dcache reduce branches in lookup pathNick Piggin1-13/+13
2011-01-07fs: icache RCU free inodesNick Piggin1-1/+8
2011-01-07fs: dcache remove dcache_lockNick Piggin1-2/+0
2011-01-07fs: scale inode alias listNick Piggin1-0/+2
2010-10-28fs/9p: Use generic_file_open with lookup_instantiate_filpAneesh Kumar K.V1-9/+2
2010-10-28fs/9p: Add missing iput in v9fs_vfs_lookupAneesh Kumar K.V1-1/+3
2010-10-28fs/9p: Use mknod 9p operation on create without open requestAneesh Kumar K.V1-2/+12
2010-10-289p: Implement TREADLINK operation for 9p2000.LM. Mohan Kumar1-3/+57
2010-10-28fs/9p: Implement create time inheritanceAneesh Kumar K.V1-44/+97
2010-10-28fs/9p: Update ACL on chmodAneesh Kumar K.V1-0/+6
2010-10-28fs/9p: Implement setting posix aclAneesh Kumar K.V1-1/+1
2010-10-28fs/9p: Implement POSIX ACL permission checking functionAneesh Kumar K.V1-1/+9
2010-10-28fs/9p: mkdir fix for setting S_ISGID bit as per parent directoryHarsh Prateek Bora1-0/+2
2010-10-289p: remove unneeded checksDan Carpenter1-13/+0
2010-10-25new helper: ihold()Al Viro1-2/+3
2010-09-13fs/9p: Don't use dotl version of mknod for dotu inode operationsAneesh Kumar K.V1-1/+1
2010-09-13fs/9p: Use the correct dentry operationsAneesh Kumar K.V1-1/+4
2010-09-13fs/9p, net/9p: memory leak fixesLatchesar Ionkov1-0/+2
2010-08-11v9fs: fixup for inode_setattr being removedStephen Rothwell1-3/+12
2010-08-10Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-4/+15
2010-08-09convert remaining ->clear_inode() to ->evict_inode()Al Viro1-1/+3