Skip to content

Commit 63e02de

Browse files
committed
Debug patch for Bug#17665497 DATANODE CRASH IN DBTUPDISKALLOC.CPP DBTUP (LINE: 848) 0X00000000
Removing failure point introduced in commit 30e00fcf0ed2f00747797e417266d3603ad82f15 Date: Tue Jun 16 15:20:08 2015 +0200 Watch out for check failures in testNodeRestart -n Bug16766493 D1 testSystemRestart -n SR_DD_1b D1 testSystemRestart -n SR_DD_1b D2 testSystemRestart -n SR_DD_1b_LCP D1 testSystemRestart -n SR_DD_1b_LCP D2 testBasic -n Bug54986 D2 and possible some more tests in daily-basic.
1 parent 8031c3e commit 63e02de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

storage/ndb/src/kernel/blocks/dbtup/DbtupDiskAlloc.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1960,7 +1960,7 @@ Dbtup::disk_restart_alloc_extent(EmulatedJamBuffer* jamBuf,
19601960
Uint32 pos= alloc.calc_extent_pos(old.p);
19611961
Local_extent_info_list new_list(c_extent_pool, alloc.m_free_extents[pos]);
19621962
#if defined VM_TRACE || defined ERROR_INSERT
1963-
ndbrequire(!"Bug17665497: debugging suspect code path.");
1963+
// ndbrequire(!"Bug17665497: debugging suspect code path.");
19641964
/**
19651965
* old is already in list with head alloc.m_extent_list.
19661966
* Before adding it to new_list it should be removed from
@@ -2042,6 +2042,7 @@ Dbtup::disk_page_get_allocated(const Tablerec* tabPtrP,
20422042
for (list.first(extentPtr); !extentPtr.isNull(); list.next(extentPtr))
20432043
{
20442044
#if defined VM_TRACE || defined ERROR_INSERT
2045+
// Bug17665497: debugging suspect code path in disk_restart_alloc_extent()
20452046
ndbrequire(extentPtr.p->m_free_matrix_pos == RNIL);
20462047
#endif
20472048
cnt++;

0 commit comments

Comments
 (0)