Seeing frequent crashes on stable |
||||
Issue descriptionGoogle Chrome 55.0.2883.103 (Official Build) (64-bit) Revision 0 Platform 8872.73.0 (Official Build) stable-channel samus Please specify Cr-* of the system to which this bug/feature applies (add the label below). Steps To Reproduce: (1) crash/3d323e3080000000 (2) (3) Expected Result: Actual Result: How frequently does this problem reproduce? (Always, sometimes, hard to reproduce?) What is the impact to the user, and is there a workaround? If so, what is it? Please provide any additional information below. Attach a screen shot or log if possible. For graphics-related bugs, please copy/paste the contents of the about:gpu page at the end of this report.
,
Jan 26 2017
Looks like an OOM in GPU process.
,
Jan 26 2017
This is not a general OOM situation. This is failing to specifically allocate DMA buffers:
From client_native_pixmap_dmabuf.cc:
-----
data_ = mmap(nullptr, map_size, (PROT_READ | PROT_WRITE), MAP_SHARED,
dmabuf_fd_.get(), 0);
if (data_ == MAP_FAILED) {
PLOG(ERROR) << "Failed mmap().";
base::TerminateBecauseOutOfMemory(map_size);
}
----
this is what it's failing.
I think this is possibly related with Issue 629521 that was fixed very recently.
,
Jan 27 2017
|
||||
►
Sign in to add a comment |
||||
Comment 1 by sgmc@google.com
, Jan 26 2017