Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
HAMANO Tsukasa
OpenLDAP
Commits
fe114336
Commit
fe114336
authored
Sep 30, 2011
by
Howard Chu
Browse files
Tweak cursor adjustment code
Skip the original cursor that made the change
parent
19d1e72b
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/libmdb/mdb.c
View file @
fe114336
...
...
@@ -1178,6 +1178,7 @@ finish:
MDB_dbi
dbi
=
mc
->
mc_dbi
-
1
;
for
(
m2
=
mc
->
mc_txn
->
mt_cursors
[
dbi
];
m2
;
m2
=
m2
->
mc_next
)
{
if
(
m2
==
mc
)
continue
;
m3
=
&
m2
->
mc_xcursor
->
mx_cursor
;
if
(
m3
->
mc_pg
[
mc
->
mc_top
]
==
mc
->
mc_pg
[
mc
->
mc_top
])
{
m3
->
mc_pg
[
mc
->
mc_top
]
=
mp
;
...
...
@@ -1187,6 +1188,7 @@ finish:
MDB_cursor
*
m2
;
for
(
m2
=
mc
->
mc_txn
->
mt_cursors
[
mc
->
mc_dbi
];
m2
;
m2
=
m2
->
mc_next
)
{
if
(
m2
==
mc
)
continue
;
if
(
m2
->
mc_pg
[
mc
->
mc_top
]
==
mc
->
mc_pg
[
mc
->
mc_top
])
{
m2
->
mc_pg
[
mc
->
mc_top
]
=
mp
;
}
...
...
@@ -4083,6 +4085,7 @@ new_sub:
dbi
--
;
for
(
m2
=
mc
->
mc_txn
->
mt_cursors
[
dbi
];
m2
;
m2
=
m2
->
mc_next
)
{
if
(
m2
==
mc
)
continue
;
if
(
mc
->
mc_flags
&
C_SUB
)
m3
=
&
m2
->
mc_xcursor
->
mx_cursor
;
else
...
...
@@ -4132,6 +4135,7 @@ put_sub:
MDB_page
*
mp
=
mc
->
mc_pg
[
i
];
for
(
m2
=
mc
->
mc_txn
->
mt_cursors
[
mc
->
mc_dbi
];
m2
;
m2
=
m2
->
mc_next
)
{
if
(
m2
==
mc
)
continue
;
if
(
m2
->
mc_pg
[
i
]
==
mp
&&
m2
->
mc_ki
[
i
]
==
mc
->
mc_ki
[
i
])
{
mdb_xcursor_init1
(
m2
,
leaf
);
}
...
...
@@ -4809,6 +4813,7 @@ mdb_node_move(MDB_cursor *csrc, MDB_cursor *cdst)
dbi
--
;
for
(
m2
=
csrc
->
mc_txn
->
mt_cursors
[
dbi
];
m2
;
m2
=
m2
->
mc_next
)
{
if
(
m2
==
csrc
)
continue
;
if
(
csrc
->
mc_flags
&
C_SUB
)
m3
=
&
m2
->
mc_xcursor
->
mx_cursor
;
else
...
...
@@ -4951,6 +4956,7 @@ mdb_page_merge(MDB_cursor *csrc, MDB_cursor *cdst)
dbi
--
;
for
(
m2
=
csrc
->
mc_txn
->
mt_cursors
[
dbi
];
m2
;
m2
=
m2
->
mc_next
)
{
if
(
m2
==
csrc
)
continue
;
if
(
csrc
->
mc_flags
&
C_SUB
)
m3
=
&
m2
->
mc_xcursor
->
mx_cursor
;
else
...
...
@@ -5031,6 +5037,7 @@ mdb_rebalance(MDB_cursor *mc)
dbi
--
;
for
(
m2
=
mc
->
mc_txn
->
mt_cursors
[
dbi
];
m2
;
m2
=
m2
->
mc_next
)
{
if
(
m2
==
mc
)
continue
;
if
(
mc
->
mc_flags
&
C_SUB
)
m3
=
&
m2
->
mc_xcursor
->
mx_cursor
;
else
...
...
@@ -5059,6 +5066,7 @@ mdb_rebalance(MDB_cursor *mc)
dbi
--
;
for
(
m2
=
mc
->
mc_txn
->
mt_cursors
[
dbi
];
m2
;
m2
=
m2
->
mc_next
)
{
if
(
m2
==
mc
)
continue
;
if
(
mc
->
mc_flags
&
C_SUB
)
m3
=
&
m2
->
mc_xcursor
->
mx_cursor
;
else
...
...
@@ -5483,6 +5491,7 @@ done:
dbi
--
;
for
(
m2
=
mc
->
mc_txn
->
mt_cursors
[
dbi
];
m2
;
m2
=
m2
->
mc_next
)
{
if
(
m2
==
mc
)
continue
;
if
(
mc
->
mc_flags
&
C_SUB
)
m3
=
&
m2
->
mc_xcursor
->
mx_cursor
;
else
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment