Summary: | Remove WTF::fastMallocGoodSize(). | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Andreas Kling <kling> | ||||||
Component: | Web Template Framework | Assignee: | Andreas Kling <kling> | ||||||
Status: | REOPENED --- | ||||||||
Severity: | Normal | CC: | benjamin, bfulgham, cmarcelo, commit-queue, ggaren, kling | ||||||
Priority: | P2 | ||||||||
Version: | 528+ (Nightly build) | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
Bug Depends on: | 141335 | ||||||||
Bug Blocks: | |||||||||
Attachments: |
|
Description
Andreas Kling
2015-01-28 18:07:20 PST
Created attachment 245595 [details]
Patch
Fast malloc can't give us the bucket size efficiently? s/Fast Malloc/bmalloc Comment on attachment 245595 [details]
Patch
k
Comment on attachment 245595 [details] Patch Rejecting attachment 245595 [details] from commit-queue. Failed to run "['/Volumes/Data/EWS/WebKit/Tools/Scripts/webkit-patch', '--status-host=webkit-queues.appspot.com', '--bot-id=webkit-cq-01', 'apply-attachment', '--no-update', '--non-interactive', 245595, '--port=mac']" exit_code: 2 cwd: /Volumes/Data/EWS/WebKit Last 500 characters of output: cpp patching file Source/WTF/wtf/FastMalloc.cpp Hunk #1 FAILED at 219. Hunk #2 FAILED at 334. Hunk #3 succeeded at 2753 (offset -33 lines). 2 out of 3 hunks FAILED -- saving rejects to file Source/WTF/wtf/FastMalloc.cpp.rej patching file Source/WTF/wtf/FastMalloc.h Hunk #1 succeeded at 35 with fuzz 2. patching file Source/WTF/wtf/Vector.h Failed to run "[u'/Volumes/Data/EWS/WebKit/Tools/Scripts/svn-apply', '--force', '--reviewer', u'Anders Carlsson']" exit_code: 1 cwd: /Volumes/Data/EWS/WebKit Full output: http://webkit-queues.appspot.com/results/5577581122289664 Created attachment 246147 [details]
Patch for landing
Comment on attachment 246147 [details] Patch for landing Clearing flags on attachment: 246147 Committed r179743: <http://trac.webkit.org/changeset/179743> All reviewed patches have been landed. Closing bug. For reasons I don't yet understand, this has absolutely destroyed our ability to run DumpRenderTree on Windows. I'll see if this method was being used manually in the Windows code somewhere. Re-opened since this is blocked by bug 141335 I think the problem is that our Open Source test bots are running with WebKitQuartzCoreAdditions.dll that was linked with the WTF::fastMallocGoodSize() symbol. We need to roll out updates to WKQCA before we land this. (In reply to comment #11) > I think the problem is that our Open Source test bots are running with > WebKitQuartzCoreAdditions.dll that was linked with the > WTF::fastMallocGoodSize() symbol. > > We need to roll out updates to WKQCA before we land this. I think the easier way is to just leave the symbol in there as a functioning stub, and just remove the use from Vector.h right now. This also broke WebKit nightlies, which may be more challenging to fix. See bug 141344. I guess it's no more challenging to fix if it just returns size though. Comment on attachment 245595 [details] Patch Cleared Anders Carlsson's review+ from obsolete attachment 245595 [details] so that this bug does not appear in http://webkit.org/pending-commit. |