Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lustre-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
debian-packages
lustre-release
Commits
4d3e4bf7
Commit
4d3e4bf7
authored
21 years ago
by
Wang Di
Browse files
Options
Downloads
Patches
Plain Diff
some minor fix in delete snapshot
parent
4275e6a1
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lustre/snapfs/snaptable.c
+3
-4
3 additions, 4 deletions
lustre/snapfs/snaptable.c
with
3 additions
and
4 deletions
lustre/snapfs/snaptable.c
+
3
−
4
View file @
4d3e4bf7
...
@@ -306,7 +306,7 @@ static int delete_inode(struct inode *primary, void *param)
...
@@ -306,7 +306,7 @@ static int delete_inode(struct inode *primary, void *param)
my_table
[
slot
-
delete_slot
]
=
table
->
snap_items
[
slot
].
index
;
my_table
[
slot
-
delete_slot
]
=
table
->
snap_items
[
slot
].
index
;
}
}
next_ind
=
snap_get_indirect
next_ind
=
snap_get_indirect
(
primary
,
my_table
,
table
->
tbl_count
-
delete_slot
);
(
primary
,
my_table
,
table
->
tbl_count
-
delete_slot
);
if
(
next_ind
&&
(
next_ind
->
i_ino
==
primary
->
i_ino
))
{
if
(
next_ind
&&
(
next_ind
->
i_ino
==
primary
->
i_ino
))
{
iput
(
next_ind
);
iput
(
next_ind
);
next_ind
=
NULL
;
next_ind
=
NULL
;
...
@@ -719,8 +719,7 @@ int snap_get_index_from_name(int tableno, char *name)
...
@@ -719,8 +719,7 @@ int snap_get_index_from_name(int tableno, char *name)
table
=
&
snap_tables
[
tableno
];
table
=
&
snap_tables
[
tableno
];
for
(
slot
=
0
;
slot
<
SNAP_MAX
;
slot
++
)
{
for
(
slot
=
0
;
slot
<
SNAP_MAX
;
slot
++
)
{
if
(
strncmp
(
&
table
->
snap_items
[
slot
].
name
[
0
],
name
,
if
(
!
strcmp
(
&
table
->
snap_items
[
slot
].
name
[
0
],
name
))
{
SNAP_MAX_NAMELEN
)
==
0
)
{
return
table
->
snap_items
[
slot
].
index
;
return
table
->
snap_items
[
slot
].
index
;
}
}
}
}
...
@@ -754,7 +753,7 @@ int snap_iterate_func( struct ioc_snap_tbl_data *data, unsigned int cmd)
...
@@ -754,7 +753,7 @@ int snap_iterate_func( struct ioc_snap_tbl_data *data, unsigned int cmd)
sb
=
cache
->
cache_sb
;
sb
=
cache
->
cache_sb
;
table
=
&
snap_tables
[
tableno
];
table
=
&
snap_tables
[
tableno
];
index
=
get_index_
of_item
(
table
,
data
->
snaps
[
0
].
name
);
index
=
snap_
get_index_
from_name
(
table
no
,
data
->
snaps
[
0
].
name
);
if
(
index
<
0
)
if
(
index
<
0
)
RETURN
(
-
EINVAL
);
RETURN
(
-
EINVAL
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment