Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
e1d0a3b5
Commit
e1d0a3b5
authored
Sep 15, 2003
by
Dean Roehrich
Committed by
Stephen Lord
Sep 15, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] Change dm_send_namesp_event to take vnode ptrs rather than bhv ptrs.
SGI Modid: 2.5.x-xfs:slinx:157475a
parent
4a93d6e8
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
32 deletions
+29
-32
fs/xfs/linux/xfs_lrw.c
fs/xfs/linux/xfs_lrw.c
+2
-2
fs/xfs/xfs_mount.h
fs/xfs/xfs_mount.h
+2
-2
fs/xfs/xfs_rename.c
fs/xfs/xfs_rename.c
+4
-4
fs/xfs/xfs_vfsops.c
fs/xfs/xfs_vfsops.c
+1
-4
fs/xfs/xfs_vnodeops.c
fs/xfs/xfs_vnodeops.c
+20
-20
No files found.
fs/xfs/linux/xfs_lrw.c
View file @
e1d0a3b5
...
...
@@ -693,8 +693,8 @@ xfs_write(
DM_EVENT_ENABLED
(
vp
->
v_vfsp
,
xip
,
DM_EVENT_NOSPACE
)
&&
!
invisible
)
{
xfs_rwunlock
(
bdp
,
locktype
);
error
=
XFS_SEND_NAMESP
(
xip
->
i_mount
,
DM_EVENT_NOSPACE
,
bd
p
,
DM_RIGHT_NULL
,
bd
p
,
DM_RIGHT_NULL
,
NULL
,
NULL
,
error
=
XFS_SEND_NAMESP
(
xip
->
i_mount
,
DM_EVENT_NOSPACE
,
v
p
,
DM_RIGHT_NULL
,
v
p
,
DM_RIGHT_NULL
,
NULL
,
NULL
,
0
,
0
,
0
);
/* Delay flag intentionally unused */
if
(
error
)
return
-
error
;
...
...
fs/xfs/xfs_mount.h
View file @
e1d0a3b5
...
...
@@ -95,8 +95,8 @@ typedef int (*xfs_send_data_t)(int, struct bhv_desc *,
xfs_off_t
,
size_t
,
int
,
vrwlock_t
*
);
typedef
int
(
*
xfs_send_mmap_t
)(
struct
vm_area_struct
*
,
uint
);
typedef
int
(
*
xfs_send_destroy_t
)(
struct
bhv_desc
*
,
dm_right_t
);
typedef
int
(
*
xfs_send_namesp_t
)(
dm_eventtype_t
,
struct
bhv_desc
*
,
dm_right_t
,
struct
bhv_desc
*
,
dm_right_t
,
typedef
int
(
*
xfs_send_namesp_t
)(
dm_eventtype_t
,
struct
vnode
*
,
dm_right_t
,
struct
vnode
*
,
dm_right_t
,
char
*
,
char
*
,
mode_t
,
int
,
int
);
typedef
void
(
*
xfs_send_unmount_t
)(
struct
vfs
*
,
struct
vnode
*
,
dm_right_t
,
mode_t
,
int
,
int
);
...
...
fs/xfs/xfs_rename.c
View file @
e1d0a3b5
...
...
@@ -292,8 +292,8 @@ xfs_rename(
DM_EVENT_ENABLED
(
target_dir_vp
->
v_vfsp
,
target_dp
,
DM_EVENT_RENAME
))
{
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_RENAME
,
src_dir_
bd
p
,
DM_RIGHT_NULL
,
target_dir_
bd
p
,
DM_RIGHT_NULL
,
src_dir_
v
p
,
DM_RIGHT_NULL
,
target_dir_
v
p
,
DM_RIGHT_NULL
,
src_name
,
target_name
,
0
,
0
,
0
);
if
(
error
)
{
...
...
@@ -649,8 +649,8 @@ xfs_rename(
DM_EVENT_ENABLED
(
target_dir_vp
->
v_vfsp
,
target_dp
,
DM_EVENT_POSTRENAME
))
{
(
void
)
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_POSTRENAME
,
src_dir_
bd
p
,
DM_RIGHT_NULL
,
target_dir_
bd
p
,
DM_RIGHT_NULL
,
src_dir_
v
p
,
DM_RIGHT_NULL
,
target_dir_
v
p
,
DM_RIGHT_NULL
,
src_name
,
target_name
,
0
,
error
,
0
);
}
...
...
fs/xfs/xfs_vfsops.c
View file @
e1d0a3b5
...
...
@@ -532,11 +532,8 @@ xfs_unmount(
rvp
=
XFS_ITOV
(
rip
);
if
(
vfsp
->
vfs_flag
&
VFS_DMI
)
{
bhv_desc_t
*
rbdp
;
rbdp
=
vn_bhv_lookup_unlocked
(
VN_BHV_HEAD
(
rvp
),
&
xfs_vnodeops
);
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_PREUNMOUNT
,
r
bdp
,
DM_RIGHT_NULL
,
rbd
p
,
DM_RIGHT_NULL
,
r
vp
,
DM_RIGHT_NULL
,
rv
p
,
DM_RIGHT_NULL
,
NULL
,
NULL
,
0
,
0
,
(
mp
->
m_dmevmask
&
(
1
<<
DM_EVENT_PREUNMOUNT
))
?
0
:
DM_FLAGS_UNWANTED
);
...
...
fs/xfs/xfs_vnodeops.c
View file @
e1d0a3b5
...
...
@@ -937,7 +937,7 @@ xfs_setattr(
if
(
DM_EVENT_ENABLED
(
vp
->
v_vfsp
,
ip
,
DM_EVENT_ATTRIBUTE
)
&&
!
(
flags
&
ATTR_DMI
))
{
(
void
)
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_ATTRIBUTE
,
bd
p
,
DM_RIGHT_NULL
,
(
void
)
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_ATTRIBUTE
,
v
p
,
DM_RIGHT_NULL
,
NULL
,
DM_RIGHT_NULL
,
NULL
,
NULL
,
0
,
0
,
AT_DELAY_FLAG
(
flags
));
}
...
...
@@ -1980,7 +1980,7 @@ xfs_create(
if
(
DM_EVENT_ENABLED
(
dir_vp
->
v_vfsp
,
dp
,
DM_EVENT_CREATE
))
{
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_CREATE
,
dir_
bd
p
,
DM_RIGHT_NULL
,
NULL
,
dir_
v
p
,
DM_RIGHT_NULL
,
NULL
,
DM_RIGHT_NULL
,
name
,
NULL
,
dm_di_mode
,
0
,
0
);
...
...
@@ -2146,8 +2146,8 @@ xfs_create(
DM_EVENT_ENABLED
(
dir_vp
->
v_vfsp
,
XFS_BHVTOI
(
dir_bdp
),
DM_EVENT_POSTCREATE
))
{
(
void
)
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_POSTCREATE
,
dir_
bd
p
,
DM_RIGHT_NULL
,
*
vpp
?
v
n_bhv_lookup_unlocked
(
VN_BHV_HEAD
(
vp
),
&
xfs_vnodeops
)
:
NULL
,
dir_
v
p
,
DM_RIGHT_NULL
,
*
vpp
?
v
p
:
NULL
,
DM_RIGHT_NULL
,
name
,
NULL
,
dm_di_mode
,
error
,
0
);
}
...
...
@@ -2460,7 +2460,7 @@ xfs_remove(
namelen
=
VNAMELEN
(
dentry
);
if
(
DM_EVENT_ENABLED
(
dir_vp
->
v_vfsp
,
dp
,
DM_EVENT_REMOVE
))
{
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_REMOVE
,
dir_
bd
p
,
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_REMOVE
,
dir_
v
p
,
DM_RIGHT_NULL
,
NULL
,
DM_RIGHT_NULL
,
name
,
NULL
,
0
,
0
,
0
);
if
(
error
)
...
...
@@ -2626,7 +2626,7 @@ xfs_remove(
if
(
DM_EVENT_ENABLED
(
dir_vp
->
v_vfsp
,
dp
,
DM_EVENT_POSTREMOVE
))
{
(
void
)
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_POSTREMOVE
,
dir_
bd
p
,
DM_RIGHT_NULL
,
dir_
v
p
,
DM_RIGHT_NULL
,
NULL
,
DM_RIGHT_NULL
,
name
,
NULL
,
dm_di_mode
,
error
,
0
);
}
...
...
@@ -2710,8 +2710,8 @@ xfs_link(
if
(
DM_EVENT_ENABLED
(
src_vp
->
v_vfsp
,
tdp
,
DM_EVENT_LINK
))
{
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_LINK
,
target_dir_
bd
p
,
DM_RIGHT_NULL
,
src_
bd
p
,
DM_RIGHT_NULL
,
target_dir_
v
p
,
DM_RIGHT_NULL
,
src_
v
p
,
DM_RIGHT_NULL
,
target_name
,
NULL
,
0
,
0
,
0
);
if
(
error
)
return
error
;
...
...
@@ -2814,8 +2814,8 @@ xfs_link(
if
(
DM_EVENT_ENABLED
(
src_vp
->
v_vfsp
,
sip
,
DM_EVENT_POSTLINK
))
{
(
void
)
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_POSTLINK
,
target_dir_
bd
p
,
DM_RIGHT_NULL
,
src_
bd
p
,
DM_RIGHT_NULL
,
target_dir_
v
p
,
DM_RIGHT_NULL
,
src_
v
p
,
DM_RIGHT_NULL
,
target_name
,
NULL
,
0
,
error
,
0
);
}
return
error
;
...
...
@@ -2876,7 +2876,7 @@ xfs_mkdir(
if
(
DM_EVENT_ENABLED
(
dir_vp
->
v_vfsp
,
dp
,
DM_EVENT_CREATE
))
{
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_CREATE
,
dir_
bd
p
,
DM_RIGHT_NULL
,
NULL
,
dir_
v
p
,
DM_RIGHT_NULL
,
NULL
,
DM_RIGHT_NULL
,
dir_name
,
NULL
,
dm_di_mode
,
0
,
0
);
if
(
error
)
...
...
@@ -3035,8 +3035,8 @@ xfs_mkdir(
DM_EVENT_ENABLED
(
dir_vp
->
v_vfsp
,
XFS_BHVTOI
(
dir_bdp
),
DM_EVENT_POSTCREATE
))
{
(
void
)
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_POSTCREATE
,
dir_
bd
p
,
DM_RIGHT_NULL
,
created
?
XFS_ITO
BH
V
(
cdp
)
:
NULL
,
dir_
v
p
,
DM_RIGHT_NULL
,
created
?
XFS_ITOV
(
cdp
)
:
NULL
,
DM_RIGHT_NULL
,
dir_name
,
NULL
,
dm_di_mode
,
error
,
0
);
...
...
@@ -3099,7 +3099,7 @@ xfs_rmdir(
if
(
DM_EVENT_ENABLED
(
dir_vp
->
v_vfsp
,
dp
,
DM_EVENT_REMOVE
))
{
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_REMOVE
,
dir_
bd
p
,
DM_RIGHT_NULL
,
dir_
v
p
,
DM_RIGHT_NULL
,
NULL
,
DM_RIGHT_NULL
,
name
,
NULL
,
0
,
0
,
0
);
if
(
error
)
...
...
@@ -3293,7 +3293,7 @@ xfs_rmdir(
std_return:
if
(
DM_EVENT_ENABLED
(
dir_vp
->
v_vfsp
,
dp
,
DM_EVENT_POSTREMOVE
))
{
(
void
)
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_POSTREMOVE
,
dir_
bd
p
,
DM_RIGHT_NULL
,
dir_
v
p
,
DM_RIGHT_NULL
,
NULL
,
DM_RIGHT_NULL
,
name
,
NULL
,
dm_di_mode
,
error
,
0
);
...
...
@@ -3437,7 +3437,7 @@ xfs_symlink(
}
if
(
DM_EVENT_ENABLED
(
dir_vp
->
v_vfsp
,
dp
,
DM_EVENT_SYMLINK
))
{
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_SYMLINK
,
dir_
bd
p
,
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_SYMLINK
,
dir_
v
p
,
DM_RIGHT_NULL
,
NULL
,
DM_RIGHT_NULL
,
link_name
,
target_path
,
0
,
0
,
0
);
if
(
error
)
...
...
@@ -3629,8 +3629,8 @@ xfs_symlink(
if
(
DM_EVENT_ENABLED
(
dir_vp
->
v_vfsp
,
XFS_BHVTOI
(
dir_bdp
),
DM_EVENT_POSTSYMLINK
))
{
(
void
)
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_POSTSYMLINK
,
dir_
bd
p
,
DM_RIGHT_NULL
,
error
?
NULL
:
XFS_ITO
BH
V
(
ip
),
dir_
v
p
,
DM_RIGHT_NULL
,
error
?
NULL
:
XFS_ITOV
(
ip
),
DM_RIGHT_NULL
,
link_name
,
target_path
,
0
,
error
,
0
);
}
...
...
@@ -4268,8 +4268,8 @@ xfs_alloc_file_space(
DM_EVENT_ENABLED
(
XFS_MTOVFS
(
mp
),
ip
,
DM_EVENT_NOSPACE
))
{
error
=
XFS_SEND_NAMESP
(
mp
,
DM_EVENT_NOSPACE
,
XFS_ITO
BH
V
(
ip
),
DM_RIGHT_NULL
,
XFS_ITO
BH
V
(
ip
),
DM_RIGHT_NULL
,
XFS_ITOV
(
ip
),
DM_RIGHT_NULL
,
XFS_ITOV
(
ip
),
DM_RIGHT_NULL
,
NULL
,
NULL
,
0
,
0
,
0
);
/* Delay flag intentionally unused */
if
(
error
==
0
)
goto
retry
;
/* Maybe DMAPI app. has made space */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment