/openbmc/linux/fs/orangefs/ |
H A D | orangefs-utils.c | diff afd9fb2a31797b4c787034294a4062df0c19c37e Tue Feb 13 14:13:46 CST 2018 Martin Brandenburg <martin@omnibond.com> orangefs: reorganize setattr functions to track attribute changes
OrangeFS accepts a mask indicating which attributes were changed. The kernel must not set any bits except those that were actually changed. The kernel must set the uid/gid of the request to the actual uid/gid responsible for the change.
Code path for notify_change initiated setattrs is
orangefs_setattr(dentry, iattr) -> __orangefs_setattr(inode, iattr)
In kernel changes are initiated by calling __orangefs_setattr.
Code path for writeback is
orangefs_write_inode -> orangefs_inode_setattr
attr_valid and attr_uid and attr_gid change together under i_lock. I_DIRTY changes separately.
__orangefs_setattr lock if needs to be cleaned first, unlock and retry set attr_valid copy data in unlock mark_inode_dirty
orangefs_inode_setattr lock copy attributes out unlock clear getattr_time # __writeback_single_inode clears dirty
orangefs_inode_getattr # possible to get here with attr_valid set and not dirty lock if getattr_time ok or attr_valid set, unlock and return unlock do server operation # another thread may getattr or setattr, so check for that lock if getattr_time ok or attr_valid, unlock and return else, copy in update getattr_time unlock
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
|
H A D | acl.c | diff afd9fb2a31797b4c787034294a4062df0c19c37e Tue Feb 13 14:13:46 CST 2018 Martin Brandenburg <martin@omnibond.com> orangefs: reorganize setattr functions to track attribute changes
OrangeFS accepts a mask indicating which attributes were changed. The kernel must not set any bits except those that were actually changed. The kernel must set the uid/gid of the request to the actual uid/gid responsible for the change.
Code path for notify_change initiated setattrs is
orangefs_setattr(dentry, iattr) -> __orangefs_setattr(inode, iattr)
In kernel changes are initiated by calling __orangefs_setattr.
Code path for writeback is
orangefs_write_inode -> orangefs_inode_setattr
attr_valid and attr_uid and attr_gid change together under i_lock. I_DIRTY changes separately.
__orangefs_setattr lock if needs to be cleaned first, unlock and retry set attr_valid copy data in unlock mark_inode_dirty
orangefs_inode_setattr lock copy attributes out unlock clear getattr_time # __writeback_single_inode clears dirty
orangefs_inode_getattr # possible to get here with attr_valid set and not dirty lock if getattr_time ok or attr_valid set, unlock and return unlock do server operation # another thread may getattr or setattr, so check for that lock if getattr_time ok or attr_valid, unlock and return else, copy in update getattr_time unlock
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
|
H A D | namei.c | diff afd9fb2a31797b4c787034294a4062df0c19c37e Tue Feb 13 14:13:46 CST 2018 Martin Brandenburg <martin@omnibond.com> orangefs: reorganize setattr functions to track attribute changes
OrangeFS accepts a mask indicating which attributes were changed. The kernel must not set any bits except those that were actually changed. The kernel must set the uid/gid of the request to the actual uid/gid responsible for the change.
Code path for notify_change initiated setattrs is
orangefs_setattr(dentry, iattr) -> __orangefs_setattr(inode, iattr)
In kernel changes are initiated by calling __orangefs_setattr.
Code path for writeback is
orangefs_write_inode -> orangefs_inode_setattr
attr_valid and attr_uid and attr_gid change together under i_lock. I_DIRTY changes separately.
__orangefs_setattr lock if needs to be cleaned first, unlock and retry set attr_valid copy data in unlock mark_inode_dirty
orangefs_inode_setattr lock copy attributes out unlock clear getattr_time # __writeback_single_inode clears dirty
orangefs_inode_getattr # possible to get here with attr_valid set and not dirty lock if getattr_time ok or attr_valid set, unlock and return unlock do server operation # another thread may getattr or setattr, so check for that lock if getattr_time ok or attr_valid, unlock and return else, copy in update getattr_time unlock
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
|
H A D | super.c | diff afd9fb2a31797b4c787034294a4062df0c19c37e Tue Feb 13 14:13:46 CST 2018 Martin Brandenburg <martin@omnibond.com> orangefs: reorganize setattr functions to track attribute changes
OrangeFS accepts a mask indicating which attributes were changed. The kernel must not set any bits except those that were actually changed. The kernel must set the uid/gid of the request to the actual uid/gid responsible for the change.
Code path for notify_change initiated setattrs is
orangefs_setattr(dentry, iattr) -> __orangefs_setattr(inode, iattr)
In kernel changes are initiated by calling __orangefs_setattr.
Code path for writeback is
orangefs_write_inode -> orangefs_inode_setattr
attr_valid and attr_uid and attr_gid change together under i_lock. I_DIRTY changes separately.
__orangefs_setattr lock if needs to be cleaned first, unlock and retry set attr_valid copy data in unlock mark_inode_dirty
orangefs_inode_setattr lock copy attributes out unlock clear getattr_time # __writeback_single_inode clears dirty
orangefs_inode_getattr # possible to get here with attr_valid set and not dirty lock if getattr_time ok or attr_valid set, unlock and return unlock do server operation # another thread may getattr or setattr, so check for that lock if getattr_time ok or attr_valid, unlock and return else, copy in update getattr_time unlock
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
|
H A D | orangefs-kernel.h | diff afd9fb2a31797b4c787034294a4062df0c19c37e Tue Feb 13 14:13:46 CST 2018 Martin Brandenburg <martin@omnibond.com> orangefs: reorganize setattr functions to track attribute changes
OrangeFS accepts a mask indicating which attributes were changed. The kernel must not set any bits except those that were actually changed. The kernel must set the uid/gid of the request to the actual uid/gid responsible for the change.
Code path for notify_change initiated setattrs is
orangefs_setattr(dentry, iattr) -> __orangefs_setattr(inode, iattr)
In kernel changes are initiated by calling __orangefs_setattr.
Code path for writeback is
orangefs_write_inode -> orangefs_inode_setattr
attr_valid and attr_uid and attr_gid change together under i_lock. I_DIRTY changes separately.
__orangefs_setattr lock if needs to be cleaned first, unlock and retry set attr_valid copy data in unlock mark_inode_dirty
orangefs_inode_setattr lock copy attributes out unlock clear getattr_time # __writeback_single_inode clears dirty
orangefs_inode_getattr # possible to get here with attr_valid set and not dirty lock if getattr_time ok or attr_valid set, unlock and return unlock do server operation # another thread may getattr or setattr, so check for that lock if getattr_time ok or attr_valid, unlock and return else, copy in update getattr_time unlock
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
|
H A D | inode.c | diff afd9fb2a31797b4c787034294a4062df0c19c37e Tue Feb 13 14:13:46 CST 2018 Martin Brandenburg <martin@omnibond.com> orangefs: reorganize setattr functions to track attribute changes
OrangeFS accepts a mask indicating which attributes were changed. The kernel must not set any bits except those that were actually changed. The kernel must set the uid/gid of the request to the actual uid/gid responsible for the change.
Code path for notify_change initiated setattrs is
orangefs_setattr(dentry, iattr) -> __orangefs_setattr(inode, iattr)
In kernel changes are initiated by calling __orangefs_setattr.
Code path for writeback is
orangefs_write_inode -> orangefs_inode_setattr
attr_valid and attr_uid and attr_gid change together under i_lock. I_DIRTY changes separately.
__orangefs_setattr lock if needs to be cleaned first, unlock and retry set attr_valid copy data in unlock mark_inode_dirty
orangefs_inode_setattr lock copy attributes out unlock clear getattr_time # __writeback_single_inode clears dirty
orangefs_inode_getattr # possible to get here with attr_valid set and not dirty lock if getattr_time ok or attr_valid set, unlock and return unlock do server operation # another thread may getattr or setattr, so check for that lock if getattr_time ok or attr_valid, unlock and return else, copy in update getattr_time unlock
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
|