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
69426b8d
Commit
69426b8d
authored
19 years ago
by
alex
Browse files
Options
Downloads
Patches
Plain Diff
- minor fixes in the script
parent
b8c8ad79
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lustre/tests/replay-dual.sh
+10
-14
10 additions, 14 deletions
lustre/tests/replay-dual.sh
with
10 additions
and
14 deletions
lustre/tests/replay-dual.sh
+
10
−
14
View file @
69426b8d
...
@@ -471,17 +471,18 @@ test_20() { # bug 3822 - evicting client with enqueued lock
...
@@ -471,17 +471,18 @@ test_20() { # bug 3822 - evicting client with enqueued lock
}
}
run_test 20
"ldlm_handle_enqueue succeeds on evicted export (3822)"
run_test 20
"ldlm_handle_enqueue succeeds on evicted export (3822)"
# $1 -
number of mountpoint
# $1 -
fs num (1, 2, ...)
# $2 - mds
# $2 - mds
function
find_dev_for_fs_and_mds
()
function
find_dev_for_fs_and_mds
()
{
{
local
fsuuid
=
`
cat
/proc/fs/lustre/llite/fs
$1
/uuid
`
local
fs
=
`
ls
/proc/fs/lustre/llite|head
-n
$1
|tail
-n1
`
local
fsuuid
=
`
cat
/proc/fs/lustre/llite/
$fs
/uuid
`
$LCTL
device_list |
awk
"/mdc.*
$2
.*
$fsuuid
/ {print
\$
4}"
$LCTL
device_list |
awk
"/mdc.*
$2
.*
$fsuuid
/ {print
\$
4}"
}
}
test_21
()
{
test_21
()
{
mdc1dev
=
`
find_dev_for_fs_and_mds
0
mds1
`
mdc1dev
=
`
find_dev_for_fs_and_mds
1
mds1
`
mdc2dev
=
`
find_dev_for_fs_and_mds
1
mds1
`
mdc2dev
=
`
find_dev_for_fs_and_mds
2
mds1
`
multiop
$MOUNT1
/f21 O
multiop
$MOUNT1
/f21 O
cancel_lru_locks MDC
cancel_lru_locks MDC
# generate IT_OPEN to be replayed against existing file
# generate IT_OPEN to be replayed against existing file
...
@@ -511,8 +512,10 @@ test_21() {
...
@@ -511,8 +512,10 @@ test_21() {
run_test 21
"open vs. unlink out of order replay"
run_test 21
"open vs. unlink out of order replay"
test_22
()
{
# bug 6063 - AST during recovery
test_22
()
{
# bug 6063 - AST during recovery
mdc1dev
=
`
find_dev_for_fs_and_mds 0 mds1
`
cancel_lru_locks MDC
mdc2dev
=
`
find_dev_for_fs_and_mds 1 mds1
`
cat
/proc/fs/lustre/ldlm/namespaces/mds-
*
/lock_count
mdc1dev
=
`
find_dev_for_fs_and_mds 1 mds1
`
mdc2dev
=
`
find_dev_for_fs_and_mds 2 mds1
`
$LCTL
--device
%
$mdc1dev
disable_recovery
$LCTL
--device
%
$mdc1dev
disable_recovery
$LCTL
--device
%
$mdc2dev
disable_recovery
$LCTL
--device
%
$mdc2dev
disable_recovery
...
@@ -525,7 +528,6 @@ test_22() { # bug 6063 - AST during recovery
...
@@ -525,7 +528,6 @@ test_22() { # bug 6063 - AST during recovery
$LCTL
--device
%
$mdc2dev
enable_recovery
$LCTL
--device
%
$mdc2dev
enable_recovery
sleep
$((
TIMEOUT
/
2
))
sleep
$((
TIMEOUT
/
2
))
$LCTL
mark
"first recovered?"
LOCKS
=
`
grep
-v
'^0$'
/proc/fs/lustre/ldlm/namespaces/mds-
*
/lock_count
`
LOCKS
=
`
grep
-v
'^0$'
/proc/fs/lustre/ldlm/namespaces/mds-
*
/lock_count
`
if
[
"
$LOCKS
"
!=
""
]
;
then
if
[
"
$LOCKS
"
!=
""
]
;
then
echo
"The lock got replayed before mkdir is replayed:
$LOCKS
"
echo
"The lock got replayed before mkdir is replayed:
$LOCKS
"
...
@@ -536,14 +538,8 @@ test_22() { # bug 6063 - AST during recovery
...
@@ -536,14 +538,8 @@ test_22() { # bug 6063 - AST during recovery
# let's recover 1st connection with mkdir replay that needs the lock
# let's recover 1st connection with mkdir replay that needs the lock
$LCTL
--device
%
$mdc1dev
enable_recovery
$LCTL
--device
%
$mdc1dev
enable_recovery
sleep
$TIMEOUT
sleep
$TIMEOUT
$LCTL
mark
"second recovered?"
LOCKS
=
`
grep
-v
'^0$'
/proc/fs/lustre/ldlm/namespaces/mds-
*
/lock_count
`
if
[
"
$LOCKS
"
!=
"1"
]
;
then
echo
"The lock hasn't replayed:
$LOCKS
"
return
2
fi
df
$MOUNT
||
return
2
return
0
return
0
}
}
run_test 22
"AST during recovery"
run_test 22
"AST during recovery"
...
...
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