* The modify has to be inside the latch so that the BIN is updated
* inside the latch.
*/
long oldLNSize = ln.getMemorySizeIncludedByParent();
byte[] newKey = (isDup ? targetBin.getDupKey() : lnKey);
long newLsn = ln.modify(newData, database, newKey, oldLsn, locker);
long newLNSize = ln.getMemorySizeIncludedByParent();
/* Update the parent BIN. */
targetBin.updateEntry(targetIndex, newLsn, oldLNSize, newLNSize);
releaseBINs();