Skip to content

Commit

Permalink
xnu-124.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Darwin authored and das committed Jun 4, 2017
1 parent 587f919 commit 095f58f
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion bsd/conf/version.variant
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
3
2 changes: 1 addition & 1 deletion bsd/hfs/hfs_vnodeops.c
Original file line number Diff line number Diff line change
Expand Up @@ -3227,7 +3227,7 @@ struct vop_readdir_args /* {
goto Exit;
}

diroffset = uio->uio_offset - sizeof(rootdots);
diroffset = uio->uio_offset;

/* lock catalog b-tree */
retval = hfs_metafilelocking(VTOHFS(ap->a_vp), kHFSCatalogFileID, LK_SHARED, p);
Expand Down
4 changes: 2 additions & 2 deletions bsd/hfs/hfscommon/Catalog/Catalog.c
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ GetDirEntrySize(BTreeIterator *bip, ExtendedVCB * vol)
OSErr
PositionIterator(CatalogIterator *cip, UInt32 offset, BTreeIterator *bip, UInt16 *op)
{
#define CAT_START_OFFSET 0
#define CAT_START_OFFSET (2 * sizeof(struct hfsdotentry))
ExtendedVCB * vol;
FCB * fcb;
OSErr result = 0;
Expand Down Expand Up @@ -877,7 +877,7 @@ PositionIterator(CatalogIterator *cip, UInt32 offset, BTreeIterator *bip, UInt16
pid = *idp;

curOffset = CAT_START_OFFSET;
nextOffset = GetDirEntrySize(bip, vol);
nextOffset = CAT_START_OFFSET + GetDirEntrySize(bip, vol);

while (nextOffset < offset) {
result = BTIterateRecord( fcb, kBTreeNextRecord, bip, NULL, NULL );
Expand Down
30 changes: 15 additions & 15 deletions iokit/KernelConfigTables.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@
*/
const char * gIOKernelKmods =
"{
'com.apple.kernel' = '1.3.2';
'com.apple.kernel.bsd' = '1.0.2';
'com.apple.kernel.iokit' = '1.0.2';
'com.apple.kernel.libkern' = '1.0.2';
'com.apple.kernel.mach' = '1.0.2';
'com.apple.iokit.IOADBFamily' = '1.0.2';
'com.apple.iokit.IOCDStorageFamily' = '1.0.2';
'com.apple.iokit.IODVDStorageFamily' = '1.0.2';
'com.apple.iokit.IOGraphicsFamily' = '1.0.2';
'com.apple.iokit.IOHIDSystem' = '1.0.2';
'com.apple.iokit.IONDRVSupport' = '1.0.2';
'com.apple.iokit.IONetworkingFamily' = '1.0.2';
'com.apple.iokit.IOPCIFamily' = '1.0.2';
'com.apple.iokit.IOStorageFamily' = '1.0.2';
'com.apple.iokit.IOSystemManagementFamily' = '1.0.2';
'com.apple.kernel' = '1.3.3';
'com.apple.kernel.bsd' = '1.0.3';
'com.apple.kernel.iokit' = '1.0.3';
'com.apple.kernel.libkern' = '1.0.3';
'com.apple.kernel.mach' = '1.0.3';
'com.apple.iokit.IOADBFamily' = '1.0.3';
'com.apple.iokit.IOCDStorageFamily' = '1.0.3';
'com.apple.iokit.IODVDStorageFamily' = '1.0.3';
'com.apple.iokit.IOGraphicsFamily' = '1.0.3';
'com.apple.iokit.IOHIDSystem' = '1.0.3';
'com.apple.iokit.IONDRVSupport' = '1.0.3';
'com.apple.iokit.IONetworkingFamily' = '1.0.3';
'com.apple.iokit.IOPCIFamily' = '1.0.3';
'com.apple.iokit.IOStorageFamily' = '1.0.3';
'com.apple.iokit.IOSystemManagementFamily' = '1.0.3';
}";


Expand Down
2 changes: 1 addition & 1 deletion iokit/conf/version.variant
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
3
2 changes: 1 addition & 1 deletion libkern/conf/version.variant
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
3
2 changes: 1 addition & 1 deletion libsa/conf/version.variant
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
3
2 changes: 1 addition & 1 deletion osfmk/conf/kernelversion.variant
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
3
2 changes: 1 addition & 1 deletion osfmk/conf/version.variant
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
3
2 changes: 1 addition & 1 deletion pexpert/conf/version.variant
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
3

0 comments on commit 095f58f

Please sign in to comment.