summaryrefslogtreecommitdiff
path: root/src/include/log.h
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2015-07-29 16:29:34 -0400
committerSusan LoVerso <sue@wiredtiger.com>2015-07-29 16:29:34 -0400
commit68153f96347ca3bcac95de0972447cd6b36fa52c (patch)
tree056a4b3c8c672f7fca140df78c2202c03e80e1ed /src/include/log.h
parent24f2d764738b356d3a9c6f4ec5b23da3302251e6 (diff)
downloadmongo-68153f96347ca3bcac95de0972447cd6b36fa52c.tar.gz
WT-1989 Fix race condition releasing slot. Remove incorrect assertion.
Diffstat (limited to 'src/include/log.h')
-rw-r--r--src/include/log.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/log.h b/src/include/log.h
index d307289ca16..e92f772373a 100644
--- a/src/include/log.h
+++ b/src/include/log.h
@@ -120,11 +120,11 @@ typedef WT_COMPILER_TYPE_ALIGN(WT_CACHE_LINE_ALIGNMENT) struct {
int64_t slot_unbuffered; /* Unbuffered data in this slot */
int32_t slot_error; /* Error value */
wt_off_t slot_start_offset; /* Starting file offset */
- WT_LSN slot_release_lsn; /* Slot release LSN */
- WT_LSN slot_start_lsn; /* Slot starting LSN */
- WT_LSN slot_end_lsn; /* Slot ending LSN */
+ WT_LSN slot_release_lsn; /* Slot release LSN */
+ WT_LSN slot_start_lsn; /* Slot starting LSN */
+ WT_LSN slot_end_lsn; /* Slot ending LSN */
WT_FH *slot_fh; /* File handle for this group */
- WT_ITEM slot_buf; /* Buffer for grouped writes */
+ WT_ITEM slot_buf; /* Buffer for grouped writes */
#define WT_SLOT_BUFFERED 0x01 /* Buffer writes */
#define WT_SLOT_CLOSEFH 0x02 /* Close old fh on release */