Skip to content

Commit aac5b27

Browse files
author
Markus Grönlund
committedMar 10, 2020
8238180: RunThese30M failed "assert(t->jfr_thread_local()->shelved_buffer() == __null) failed: invariant"
Reviewed-by: egahlin
1 parent edaf548 commit aac5b27

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/hotspot/share/jfr/recorder/storage/jfrStorage.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,6 @@ static void assert_flush_precondition(ConstBufferPtr cur, size_t used, bool nati
464464

465465
static void assert_flush_regular_precondition(ConstBufferPtr cur, const u1* const cur_pos, size_t used, size_t req, const Thread* t) {
466466
assert(t != NULL, "invariant");
467-
assert(t->jfr_thread_local()->shelved_buffer() == NULL, "invariant");
468467
assert(cur != NULL, "invariant");
469468
assert(!cur->lease(), "invariant");
470469
assert(cur_pos != NULL, "invariant");
@@ -513,7 +512,6 @@ BufferPtr JfrStorage::flush_regular(BufferPtr cur, const u1* const cur_pos, size
513512
return cur;
514513
}
515514
}
516-
assert(t->jfr_thread_local()->shelved_buffer() == NULL, "invariant");
517515
if (cur->free_size() >= req) {
518516
// simplest case, no switching of buffers
519517
if (used > 0) {
@@ -524,6 +522,7 @@ BufferPtr JfrStorage::flush_regular(BufferPtr cur, const u1* const cur_pos, size
524522
}
525523
// Going for a "larger-than-regular" buffer.
526524
// Shelve the current buffer to make room for a temporary lease.
525+
assert(t->jfr_thread_local()->shelved_buffer() == NULL, "invariant");
527526
t->jfr_thread_local()->shelve_buffer(cur);
528527
return provision_large(cur, cur_pos, used, req, native, t);
529528
}

0 commit comments

Comments
 (0)
Please sign in to comment.