Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
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
Kirill Smelkov
mariadb
Commits
aa9a3a69
Commit
aa9a3a69
authored
Jan 30, 2008
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge perch.ndb.mysql.com:/home/jonas/src/50-ndb
into perch.ndb.mysql.com:/home/jonas/src/51-ndb
parents
6131fa09
f16b8a19
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
16 deletions
+46
-16
storage/ndb/src/kernel/blocks/backup/Backup.cpp
storage/ndb/src/kernel/blocks/backup/Backup.cpp
+8
-6
storage/ndb/src/kernel/blocks/backup/Backup.hpp
storage/ndb/src/kernel/blocks/backup/Backup.hpp
+2
-2
storage/ndb/src/kernel/vm/DLHashTable.hpp
storage/ndb/src/kernel/vm/DLHashTable.hpp
+18
-4
storage/ndb/src/kernel/vm/DLHashTable2.hpp
storage/ndb/src/kernel/vm/DLHashTable2.hpp
+18
-4
No files found.
storage/ndb/src/kernel/blocks/backup/Backup.cpp
View file @
aa9a3a69
...
...
@@ -326,16 +326,18 @@ Backup::execCONTINUEB(Signal* signal)
ptr
.
p
->
files
.
getPtr
(
filePtr
,
ptr
.
p
->
ctlFilePtr
);
FsBuffer
&
buf
=
filePtr
.
p
->
operation
.
dataBuffer
;
if
(
buf
.
getFreeSize
()
+
buf
.
getMinRead
()
<
buf
.
getUsableSiz
e
())
{
if
(
buf
.
getFreeSize
()
<
buf
.
getMaxWrit
e
())
{
jam
();
TablePtr
tabPtr
LINT_SET_PTR
;
c_tablePool
.
getPtr
(
tabPtr
,
Tdata2
);
DEBUG_OUT
(
"Backup - Buffer full - "
<<
buf
.
getFreeSize
()
<<
" + "
<<
buf
.
getMinRead
()
<<
" < "
<<
buf
.
getUsableSize
()
<<
" - tableId = "
<<
tabPtr
.
p
->
tableId
);
DEBUG_OUT
(
"Backup - Buffer full - "
<<
buf
.
getFreeSize
()
<<
" < "
<<
buf
.
getMaxWrite
()
<<
" (sz: "
<<
buf
.
getUsableSize
()
<<
" getMinRead: "
<<
buf
.
getMinRead
()
<<
") - tableId = "
<<
tabPtr
.
p
->
tableId
);
signal
->
theData
[
0
]
=
BackupContinueB
::
BUFFER_FULL_META
;
signal
->
theData
[
1
]
=
Tdata1
;
signal
->
theData
[
2
]
=
Tdata2
;
...
...
storage/ndb/src/kernel/blocks/backup/Backup.hpp
View file @
aa9a3a69
...
...
@@ -557,8 +557,8 @@ public:
NDB_TICKS
m_reset_disk_speed_time
;
static
const
int
DISK_SPEED_CHECK_DELAY
=
100
;
STATIC_CONST
(
NO_OF_PAGES_META_FILE
=
(
MAX_WORDS_META_FILE
+
BACKUP_WORDS_PER_PAGE
-
1
)
/
STATIC_CONST
(
NO_OF_PAGES_META_FILE
=
(
2
*
MAX_WORDS_META_FILE
+
BACKUP_WORDS_PER_PAGE
-
1
)
/
BACKUP_WORDS_PER_PAGE
);
/**
...
...
storage/ndb/src/kernel/vm/DLHashTable.hpp
View file @
aa9a3a69
...
...
@@ -46,8 +46,8 @@ public:
/**
* Seize element from pool - return i
*
* Note
must be either added using <b>add</b> or released
*
using <b>release</b>
* Note
*must* be added using <b>add</b> (even before hash.release)
*
or be released using pool
*/
bool
seize
(
Ptr
<
T
>
&
);
...
...
@@ -360,7 +360,14 @@ DLHashTableImpl<P, T, U>::remove(Ptr<T> & ptr)
else
{
const
Uint32
hv
=
ptr
.
p
->
hashValue
()
&
mask
;
hashValues
[
hv
]
=
next
;
if
(
hashValues
[
hv
]
==
ptr
.
i
)
{
hashValues
[
hv
]
=
next
;
}
else
{
// Will add assert in 5.1
}
}
if
(
next
!=
RNIL
)
...
...
@@ -386,7 +393,14 @@ DLHashTableImpl<P, T, U>::release(Ptr<T> & ptr)
else
{
const
Uint32
hv
=
ptr
.
p
->
hashValue
()
&
mask
;
hashValues
[
hv
]
=
next
;
if
(
hashValues
[
hv
]
==
ptr
.
i
)
{
hashValues
[
hv
]
=
next
;
}
else
{
// Will add assert in 5.1
}
}
if
(
next
!=
RNIL
)
...
...
storage/ndb/src/kernel/vm/DLHashTable2.hpp
View file @
aa9a3a69
...
...
@@ -42,8 +42,8 @@ public:
/**
* Seize element from pool - return i
*
* Note
must be either added using <b>add</b> or released
*
using <b>release</b>
* Note
*must* be added using <b>add</b> (even before hash.release)
*
or be released using pool
*/
bool
seize
(
Ptr
<
T
>
&
);
...
...
@@ -374,7 +374,14 @@ DLHashTable2<T, U>::remove(Ptr<T> & ptr){
prevP
->
nextHash
=
next
;
}
else
{
const
Uint32
hv
=
ptr
.
p
->
hashValue
()
&
mask
;
hashValues
[
hv
]
=
next
;
if
(
hashValues
[
hv
]
==
ptr
.
i
)
{
hashValues
[
hv
]
=
next
;
}
else
{
// Will add assert in 5.1
}
}
if
(
next
!=
RNIL
){
...
...
@@ -395,7 +402,14 @@ DLHashTable2<T, U>::release(Ptr<T> & ptr){
prevP
->
nextHash
=
next
;
}
else
{
const
Uint32
hv
=
ptr
.
p
->
hashValue
()
&
mask
;
hashValues
[
hv
]
=
next
;
if
(
hashValues
[
hv
]
==
ptr
.
i
)
{
hashValues
[
hv
]
=
next
;
}
else
{
// Will add assert in 5.1
}
}
if
(
next
!=
RNIL
){
...
...
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