How does kernel version influence filesystem?

In case of BTRFS, the newer the kernel the more up-to-date the btrfs code in it.
But I am confused how does it work in those cases:
case 1 - BTRFS filesystem is created on kernel 3.08. Kernel is later updated to 3.17 (and filesystem rebalanced if this is necessary(?)).
case 2 - BTRFS filesystem is created on kernel 3.17.
Is the filesystem from case1 worse? I.e. is it less modern, more buggy, and with fewer features than the one in case2?
Or does the kernel used for creating the filesystem not matter, and what matters is only the currently running kernel?
And, while we are at it, I wonder the same thing about influence of the btrfs-tools version.

A btrfs example is nodesize (formally known as leafsize). Previously, the default was 4k, but this was changed to a default of 16k a year or so ago. The only time you can set the nodesize is when the filesystem is created, so people on btrfs filesystems with 4k nodes needed* to recreate their filesystem(s) with the new defaults if they wanted to stick with what upstream recommends.
*note that this wasn't compulsory; old btrfs filesystems with 4k nodesize still work, and you can still create new btrfs filesystems with 4k nodesize.
Btrfs filesystems should remain compatible with all supported (mainline and LTS) kernels. So you shouldn't experience the latter part of Lucke's 2) scenario unless you're using an outdated kernel.

Similar Messages

  • How does optimistic version locking work

    Hi,
    I have below questions regarding toplink with optimistic version locking vs pessimistic locking after checking the developer guide:
    in the guide, it suggests optimistic version locking oppose row level locking with select for update.
    if use optimistic version locking, additional column is required in database for each table and it keeps version of each row via toplink, how does toplink keeps the version technically, does it have triiger or other procedure installed in DB for this tacking between DB and Apps cache? how does the version gets incremented and what is the max value for it?
    if there are many rows in the table, how is the performance on the database level as each update statement need to verify the version of each record or it is all done on the apps cache?
    Thanks.

    It is quite simple
    With optimistic locking you have extra column in database which transfer to another attribute in your object.
    So when your application reads such object it has ID (primary key) and another attribute with version.
    When you persist changes to object that attribute value (read when object was read from db) i added to query, so you have something like:
    update xxxx set y = z,.... , version = version + 1 where id = <your obj id> and version = <current attribute value>
    That way if another session updated such object your update won't work because there is no row in table with id and version of your object.
    Assumption is that there is low concurrency and you are the only one editing that object (thats why its optimistic)
    There is no max value for it other then database field limit. It is incremented at every update by adding that increase to sql send to db, so no trigger/procedure is needed.
    As to performance - it is usually better then pessimistic locking but some of updates can fail, and since tables are accessed by primary key anyway additional condition for value shouldn't have much performance impact.

  • How does system status influence the crm transactions?

    Dear CRM Experts,
    Can you please clarify the use of system status in the crm transactions?how it's control or influence the crm transactions.can we link  the R/3 and CRM transactions using system or user status?how user status & system status are linked?
    Please provideme the solution for  the above mention points.
    Warm regards,
    Ronnit

    hi
    Using status management, you can find out about the processing status of a business transaction, and change individual statuses. Each status informs you at header and item level that a specific status has occurred (for example, quotation has been released), and specifies which step may be executed next (for example, release is allowed).
    *user status*
    A status set by the user to complement the system status for a given status object.
    You can use only a user status belonging to a status profile (defined in Customizing) and assigned to the relevant status object.
    User statuses enable you to extend the control of business processes managed by the system status. You can set and delete user statuses manually when carrying out business transactions.
    *System Status*
    A status the SAP System sets internally as a part of general status management.
    This status tells the user that a certain business transaction was performed for an object.
    moreover using user status is customised,you can mainatian your own user uset status and control the system response as decided by the system status
    for this you can make your status profile which when you atach to your transaction can be used in particular transaction*
    *Status Profile*
    A profile used to control user statuses.
    A status profile is created by the user in general status management.
    In a status profile you can:
    Define the sequence in which user statuses can be activated*
    Define initial statuses*
    Allow or prohibit certain business transactions*
    *more about system status*
    Each marketing project goes through various system statuses, one of which is always set:
    ·        Created
    ·        Released
    ·        Finished or Rejected
    ·        Locked
    ·        In Process
    ·        Approved
    *System Status Overview*
    *Created (CRTE)*
    Use
    In the Created status, you structure the marketing project and enter plan values and dates.
    Features
    This system status is the initial status for new marketing projects. The status is set automatically when you create a new marketing project.
    The status does not allow you to:
    ·        Transfer to ERP
    ·        Transfer the target group to the channel
    *Released (REL)*
    *Use*
    Structuring is complete and the marketing project is released for the operative execution of the marketing activities.
    Prerequisites
    The marketing project has the Created status.
    Features
    In the Released status, you can create new, lower-level marketing projects and change the hierarchy. The Released status is passed on automatically to lower-level marketing projects.
    *Finished (FINI)*
    Use
    This status identifies a finished/completed marketing project. A marketing project with the Finished status can no longer be changed.
    Prerequisites
    The marketing project has the Released status.
    Features
    Lower-level marketing projects belonging to the same marketing project are also finished automatically. This does not apply to lower-level marketing projects that have the Finished or Rejected status.
    You can revoke the Finished status. The system then automatically revokes the status for all upper-level marketing projects in the relevant marketing project. For this, it is prerequisite that none of the marketing projects on a higher level to the relevant marketing project are finished or rejected.
    more details you can see in
    http://help.sap.com/saphelp_crm50/helpdata/en/81/1ba63a28195840e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_crm50/helpdata/en/c5/e4aed5453d11d189430000e829fbbd/frameset.htm
    check out table JEST and TBOJ!,for system status and object relationship,along with user status.
    guess i have cleared your doubt
    best regards
    ashish

  • How are calculable attributes influence on a performance

    Hi WD Experts
    I have recently faced with a small dilemma. Is it a good idea to use calculated attributes everywhere where it's possible? For example, I have a view with table. I can implement almost all logic in the view based on calculated attributes which will return values for icons, values for controls' visibility, values for textual labels in the table and so on.
    How does the approach influence on a overall performance of my UI when user interacts with such controls? Here I suppose that each calculated attribute itself does not take any valuable time.
    Thanx
    Sergei

    Roberto,
    They are recalculated on every access. Whenever UI should be rendered, they are recalculated.
    Some calculation are extremely cheap and do not impact performance:
    1.
    return element.getIsInProcessed() ? WDVisibility.VISIBLE : WDVisibility.BLANK;
    2.
    switch ( element.getSeverity() ) {
      case -1: return WDTextViewSemanticColor.DIMINISHED;
      case 0:  return WDTextViewSemanticColor.POSITIVE;
      case 1:  return WDTextViewSemanticColor.CRITICAL;
      case 2:  return WDTextViewSemanticColor.NEGATIVE;
      default: throw new IllegalArgumentException();
    3.
    final private static String[] STATE_ID2STATE_NAME = {"stopped", "starting", "running", "stopping"};
    return STATE_ID2STATE_NAME[ element.getState() ];
    On other hand, you have some large number of calculated attributes, that depends on the same condition, then it is better to create 1..1 non-singleton value sub-node, define all attributes here and populate them at once using supply function. Also you will not win a lot in terms of performance, the code will be far more maintanable while related calculations are not scattered across several methods.
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net
    Message was edited by:
            Valery Silaev

  • How does one continue to use Mail on the early MacBook Pro, Model 1,1, that is not upgradable to Lion?  I have been running iCloud on my iPhone (OS5) and iMac (Lion) along with the MacBook Pro (OS Version 10.6.8)

    How does one continue to use Mail on the early MacBook Pro, Model 1,1, that is not upgradable to Lion?  I have been running iCloud on my iPhone (OS5) and iMac (Lion) along with the MacBook Pro (OS Version 10.6.8) since November until now.  Mail will no longer download on the MacBook Pro and keeps asking for my password.

    Mail should still be usable with your machine - but you'll need to update the settings to conform to the requirements of your system. Check with your ISP (like ATT, etc.) for the settings that will work with your Mail. Once you've updated this, you should be able to email like before.
    For example, my ISP required that I go to Mail Preferences/Accounts and make sure the details conform to your email settings.
    I have no idea of what your ISP is or what the settings might be, but this is likely the source of the problem.

  • I use "element 12" and want  like in the old PS version due Automating and Contact  II upload multiple filesand print them with any columns and rows on the same page . How does it work?

    I use "element 12" and want  like in the old PS version due Automating and Contact  II upload multiple filesand print them with any columns and rows on the same page . How does it work?

    Can you supply a link?

  • How does one remove duplicate versions of the same songs on an iPhone5?

    How does one remove duplicate versions of the same songs on an iPhone5?

    Yes, I use Live Bookmarks.
    This is the RSS http://www.ctech.com/forum/rss.php
    Each of those entries at the RSS site show up in my Firefox RSS folder twice. The content of each entry when I go to it is exactly the same. It's not that one is the reply to the original post or anything like that. For instance, see the attached image of the list of items that show up. The highlighted yellow on top is an example. Both of those links display exactly the same original post and replies. Why is that? Is is possible that somehow I'm subscribed twice? Does that make sense? How can I delete the duplicates, or for that matter, clear all those items that show on the list? I just want to see the new ones. Thanks.

  • Hi guys! Can I pick your savvy brains on something: I've been seeing people having a mini version of the Apple logo displaying next to their Twitter names, looks pretty cool, how does one do that? Thanks!

    Hi guys! Can I pick your savvy brains on something: I've been seeing people having a mini version of the Apple logo displaying next to their Twitter names, looks pretty cool, how does one do that? Thanks!

    Hi guys! Can I pick your savvy brains on something: I've been seeing people having a mini version of the Apple logo displaying next to their Twitter names, looks pretty cool, how does one do that? Thanks!

  • How does DIAdem keep track of which version is active when multiple versions are installed?

    I need a way to find out which version of DIAdem is active, without creating an automation reference. How does DIAdem keep track of this? I don't think it's through the registry as far as I can tell. Thanks.

    Hi,
    I'm not quite sure what you mean by "version of DIAdem is active". If you are trying to reference DIAdem from an external program, you will need to use an automation reference. Besides this case, I am not sure what you are referring to.
    Perhaps a short description of your application or intended use will help me point you in the right direction.
    Allen P.
    National Instruments

  • Latest version of Lightroom will not download RAW files from my D750. How does one get around this? Bought Lightroom for it's ability to manage RAW files and now very disappointed.

    Latest version of Lightroom will not download RAW files from my D750. How does one get around this? Bought Lightroom for it's ability to manage RAW files and now very disappointed.

    Here is the contents of a batch file which will convert whatever raws you drop on it:
    "C:\Program Files (x86)\Adobe\Adobe DNG Converter" -cr7.1 -dng1.4 -p0 %*
    Once you download the latest converter (release candidate from adobe labs, if necessary), and save the appropriate contents of the batch file (change path to match your system, and parameters to match your druthers, if applicable), the procedure is:
    1. Drop raw files on bat file.
    2. Import as usual (the DNGs).
    Not too bad once you're set up (if DNG converter supports your raws).
    Documentation:
    http://wwwimages.adobe.com/content/dam/Adobe/en/products/photoshop/pdfs/dng_commandline.pd f
    Note: on Mac, you may need to use "$@" (with the double-quotes) instead of %* (which is dos batch syntax), and you will need to use the full path to the converter executable file, e.g.
    “/Applications/Adobe DNG Converter.app/Contents/MacOS/Adobe DNG Converter”
    If too much, just use the GUI instead of the bat file.
    Rob

  • I downloades the creative cloud version indesign but how does it work?

    i downloades the creative cloud version indesign but how does it work?

    thank you. i didn't found it there earlier. But now i understand indesign wasn't fully downloaded yet.
    now i see it in my applications, ik just had to be a little more patient..... ;-)
    Thanks!

  • How does one sync explicit music versions from home computer to iPhone?

    How does one sync explicit music versions from home computer to iPhone?

    The same as you get anything else to sync.
    http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf
    Go to the app tab in itunes (with iphone attached) and select the app to sync with iphone.

  • Why does external modules not depend on a specific kernel version ?

    Hi,
    I'm quite new to Archlinux and there are a few things I don't understand about the way pacman handles kernel and modules packages.
    I understand that modules in the repository are only build against the current kernel version and that you should update both at the same time to keep your system in a working state, however I don't understand why the package system does not enforce that.
    For example if I look at the current nvidia modules (100.14.19-3), it will install its stuff in lib/modules/2.6.23-ARCH and hence (should) depends on kernel26>=2.6.23.
    However if I take a look at the package itself, it only depends on kernel26.
    If I upgrade the modules without upgrading the kernel or upgrade the kernel without upgrading the modules, I will break my system.
    In my opinion (but I may be missing something) the package manager should be robust and should make sure your system stay in a coherent state.
    Is there a technical reason for this or is this only to avoid having to modify the packages dependencies each time a new kernel is release ?

    Very interesting, I was right when I said I was probably missing something
    As I said in my first post, I'm a new archlinux user. I'm more familiar with debian/ubuntu systems.
    The way they are solving this kind of issue is simply by putting the kernel version number in the package name.
    For example you have nvidia-kernel-2.6.23-1 which depends on linux-image-2.6.23-1.
    This solves these kind of upgrade issues (I did a search in the forums before creating this thread and I saw there were a hell lot of kernel/modules dependency issues that have already been reported by other users).
    The advantage of this system is that you can keep both the old and the new kernel package on your system at the same time are revert to the previous version if something goes wrong.
    However the drawback is that you have to maintain several versions of the same package in the repository at the same time, which may be contrary to the archlinux philosophy...

  • How does mkinitcpio detect filesystems? (behaves differently in LXC)

    Hi, I hit a problem running a system build script inside an LXC container.
    The script runs mkinitcpio which fails to detect relevant filesystems, leading to an initramfs that can not mount ext3.
    I can solve this by listing ext3 in the MODULES section of /etc/mkinitcpio.conf but I would really like to understand
    what mkinitcpio does to determine the filesystem support to include in the initramfs.
    Perhaps my LXC config is missing something or perhaps I've just hit on something that doesn't behave right in LXC.
    If anyone can help I'd apprecate some pointers...
    Thanks.

    falconindy wrote:Sounds like its a similar situation to when you run mkinitcpio inside a chroot -- its impossible to determine the root device, and therefore you can't determine what the filesystem is.
    Yes, I think this is what it is (a LXC container is essentially a chroot on steroids)
    I'm going to do a bit of digging around the mkinitcpio source as you suggest and I may be able to work out how a container should be configured to allow mkinitcpio to see the info that it needs.
    falconindy wrote:I'll again mention the you can add the filesystems hook to add filesystems instead of explicitly specifying them in MODULES. autodetect will not bone you and leave you without a filesystem module when root FS detection fails.
    Yes, I just checked that any my mkinitcpio.conf contains what I expect are the default hooks (given I haven't changed them):
    HOOKS="base udev autodetect pata scsi sata lvm2 filesystems usbinput"

  • Kernel Panic - what's a catalog key offset and how does it get too big??

    Can anyone shed any light on this mess?
    Tue Aug 12 14:09:09 2008
    panic(cpu 0 caller 0x00248F0C): "hfsswapHFSPlusBTInternalNode: catalog key #48 offset too big (0x0000)\n"@/SourceCache/xnu/xnu-1228.5.20/bsd/hfs/hfs_endian.c:455
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x0009B498 0x0009BE3C 0x00029DD8 0x00248F0C 0x0023F140 0x0010F750 0x00110038 0x00259B90
    0x00107218 0x000F5F70 0x000F1364 0x000F5FBC 0x0030AC5C 0x000B2C48 0x00000000
    Proceeding back via exception chain:
    Exception state (sv=0x2c126280)
    PC=0x903896D8; MSR=0x0000D030; DAR=0xE0027000; DSISR=0x42000000; LR=0x00001F7C; R1=0xBFFFFE80; XCP=0x00000030 (0xC00 - System call)
    BSD process name corresponding to current thread: update
    Mac OS version:
    9E17
    Kernel version:
    Darwin Kernel Version 9.4.0: Mon Jun 9 19:36:17 PDT 2008; root:xnu-1228.5.20~1/RELEASE_PPC
    System model name: PowerMac8,1

    My latest crash, below. I can't figure this out. I've actually ordered new RAM in case that's part of the problem what's up with the coreservices.framework??
    Jon
    Process: mds [36]
    Path: /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
    Identifier: mds
    Version: ??? (???)
    Code Type: PPC (Native)
    Parent Process: launchd [1]
    Date/Time: 2008-08-16 04:20:02.278 -0700
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 17
    Application Specific Information:
    /SourceCache/Spotlight/Spotlight-398.18/index/ContentIndex/FlatStore.c:188: failed assertion 'pageSize >= pageEnd && pageSize && (_builtinpopcount(pageSize+sizeof(*page)) == 1)' /.Spotlight-V100/Store-V1/Stores/68FEB038-1559-4E12-AE27-CC5332024A80/live.1.in dexArrays ps:0, pe:0, pk:1, po:54780, ss:100000 se:7e780
    (Error) IndexStore in SIStoreDirytySDBChunks:Error storing dirty sdb pages: 30
    Thread 0:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0000d6fc 0x1000 + 50940
    5 mds 0x00005540 0x1000 + 17728
    Thread 1:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 3:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 4:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 5:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 6:
    0 libSystem.B.dylib 0x90323e48 _semwaitsignal + 8
    1 libSystem.B.dylib 0x90360a00 pthread_condwait + 1580
    2 mds 0x00009c64 0x1000 + 35940
    3 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 7:
    0 libSystem.B.dylib 0x9032a900 read$UNIX2003 + 12
    1 mds 0x00009908 0x1000 + 35080
    Thread 8:
    0 libSystem.B.dylib 0x9035ee98 kevent + 12
    1 mds 0x0007f464 0x1000 + 517220
    Thread 9:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 10:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 11:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 12:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 13:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.spotlight.index 0x0020d874 _handleExceptions + 208
    3 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 14:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 15:
    0 libSystem.B.dylib 0x9031d4b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x903608fc pthread_condwait + 1320
    2 com.apple.spotlight.index 0x0017d3c4 sischeduler_run_waitingtimeout + 188
    3 com.apple.spotlight.index 0x00168e90 runLoop + 72
    4 com.apple.spotlight.index 0x001690f4 flush_runLoop + 72
    5 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 16:
    0 libSystem.B.dylib 0x9031d4b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x903608fc pthread_condwait + 1320
    2 com.apple.spotlight.index 0x0017d3c4 sischeduler_run_waitingtimeout + 188
    3 com.apple.spotlight.index 0x00168e90 runLoop + 72
    4 com.apple.spotlight.index 0x00168fa4 setattr_runLoop + 72
    5 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 17 Crashed:
    0 com.apple.spotlight.index 0x0021947c deadbeef + 32
    1 com.apple.spotlight.index 0x00198d64 mergeEntryFlat + 1028
    2 com.apple.spotlight.index 0x0018c988 mergeEntryFat + 600
    3 com.apple.spotlight.index 0x0018d918 bt_mergeEntry + 152
    4 com.apple.spotlight.index 0x0018dbb0 mergeCallback + 368
    5 com.apple.spotlight.index 0x001db8a8 TermUpdateSetIterateCompressed + 3752
    6 com.apple.spotlight.index 0x00183400 bt_mergeSet + 320
    7 com.apple.spotlight.index 0x001a63f0 index_FlushCache + 1168
    8 com.apple.spotlight.index 0x001a6660 indexPrepareForSync + 112
    9 com.apple.spotlight.index 0x00190b5c _ContentIndexSyncIndexBulk + 1152
    10 com.apple.spotlight.index 0x00191858 ContentIndexSyncIndexBulk + 92
    11 com.apple.spotlight.index 0x0016ecf4 syncIndex + 580
    12 com.apple.spotlight.index 0x0017cf10 siwork_queueprocess + 760
    13 com.apple.spotlight.index 0x0017d1ac sischeduleronce + 356
    14 com.apple.spotlight.index 0x0017d1fc sischeduleronce + 436
    15 com.apple.spotlight.index 0x0017d588 sischeduler_run_waitingtimeout + 640
    16 com.apple.spotlight.index 0x00168e90 runLoop + 72
    17 com.apple.spotlight.index 0x001690f4 flush_runLoop + 72
    18 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 17 crashed with PPC Thread State 32:
    srr0: 0x0021947c srr1: 0x0200f030 dar: 0x00000000 dsisr: 0x42000000
    r0: 0xdeadbeef r1: 0xf081c4d0 r2: 0x00000000 r3: 0x00000000
    r4: 0x003b2c94 r5: 0x00000464 r6: 0x00003aa8 r7: 0x00000015
    r8: 0x003fc080 r9: 0x003b2c00 r10: 0x90549a3c r11: 0x003b2c00
    r12: 0x90557108 r13: 0x01017d12 r14: 0x0000000b r15: 0xf081d804
    r16: 0xf081dad0 r17: 0x00841a40 r18: 0xf081d6f4 r19: 0x00000000
    r20: 0x00000000 r21: 0xf081c638 r22: 0x0000151e r23: 0x00000001
    r24: 0x00841ab4 r25: 0x00000000 r26: 0x00000000 r27: 0x00054780
    r28: 0x00000000 r29: 0x0007e780 r30: 0xf081c4d0 r31: 0x00198974
    cr: 0x28002442 xer: 0x00000000 lr: 0x00198d68 ctr: 0x90557108
    vrsave: 0x80000000
    Binary Images:
    0x1000 - 0xc2ffb mds ??? (???) <7657e54dbfa8f682caa400531caa5844> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
    0xdf000 - 0xe1ffd com.apple.MDSChannel 1.0 (1.0) /System/Library/PrivateFrameworks/MDSChannel.framework/Versions/A/MDSChannel
    0x13c000 - 0x245ff3 com.apple.spotlight.index 10.5.2 (398.18) <7f439b312096dfbe0358c698270ac8ca> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/Spotlight Index
    0x1189000 - 0x118affc liblangid.dylib ??? (???) <5f078ac1f623f5ce432ea53fc29338c0> /usr/lib/liblangid.dylib
    0x20be000 - 0x21e3ffb libmecab.1.0.0.dylib ??? (???) <cd875e74974e4ec3a0b13eeeb236fa53> /usr/lib/libmecab.1.0.0.dylib
    0x67c6000 - 0x67caff7 libgermantok.dylib ??? (???) <4d20f26bdd859d4ee54109a0d4cd699c> /usr/lib/libgermantok.dylib
    0x8fe00000 - 0x8fe30b23 dyld 96.2 (???) <ef2061020a88c4fe1f40b8d9cb1a6101> /usr/lib/dyld
    0x9031c000 - 0x904b5fe3 libSystem.B.dylib ??? (???) <79cf3ef34f92361dc6263d884c723c24> /usr/lib/libSystem.B.dylib
    0x9053f000 - 0x90622feb libobjc.A.dylib ??? (???) <23a407d7dac6090562827e97bac3cb86> /usr/lib/libobjc.A.dylib
    0x90623000 - 0x906f6fff com.apple.CoreServices.OSServices 226.5 (226.5) <50a4f7fe2d6078971f9ef6fc88cc5d2b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x907fa000 - 0x90821fff libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib
    0x9085b000 - 0x90876ff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <d69161954145cf745b51ae31e0961077> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90a1b000 - 0x90a66ffb com.apple.Metadata 10.5.2 (398.18) <0899c93992af8d2e36e4dd2ad21ba475> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90c23000 - 0x90c9efff com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91621000 - 0x91746ffb com.apple.CoreFoundation 6.5.3 (476.14) <56add4656a227fa699f8aa1427b369d9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91747000 - 0x917ddfff com.apple.LaunchServices 289.2 (289.2) <67191ba4de2d3d14be9b4bbddd4fe0a6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91ed9000 - 0x91f0efff com.apple.AE 402.2 (402.2) <0b15a08da8ec38b74fb9dd6e579ed25f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9312d000 - 0x931b2fff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x9320b000 - 0x93244fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <1a39075165bf7447fe8be1e93db49346> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x93245000 - 0x9324aff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9324b000 - 0x932cfffd com.apple.CFNetwork 330.4 (330.4) <6e1a01b50c14cf720e067ea018c4e4ad> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93732000 - 0x93799ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x9379b000 - 0x937c6ff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x93830000 - 0x93839fff com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9390c000 - 0x93af2ffb com.apple.security 5.0.4 (34102) <9a5739b5b522f963b320fd71581b9cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93f0d000 - 0x94152ffb com.apple.Foundation 6.5.5 (677.19) <1667218c075b6e69728c5c2dd9ff6065> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x948df000 - 0x94973ff7 com.apple.framework.IOKit 1.5.1 (???) <c1d6fa5eb7372b90ca4fea8910170152> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94ca8000 - 0x94cb0fff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x94fec000 - 0x95004ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x950e8000 - 0x951deffc libiconv.2.dylib ??? (???) <05ae1fcc97404173b2f9caef8f8be797> /usr/lib/libiconv.2.dylib
    0x951df000 - 0x951eaffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x95358000 - 0x95659ffb com.apple.CoreServices.CarbonCore 786.6 (786.6) <d2ae460a0de15ca950ac723616666507> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9565a000 - 0x95668fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x9648c000 - 0x96575fff libxml2.2.dylib ??? (???) <6bf1a24e68615e0edf843988f5a0a1f4> /usr/lib/libxml2.2.dylib
    0x96590000 - 0x9659ffff com.apple.DSObjCWrappers.Framework 1.3 (1.3) <897487778bd1c0429fcd88c99c293583> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9681d000 - 0x96965ffb libicucore.A.dylib ??? (???) <dd2fd169aa328f6e97a1d700e5846866> /usr/lib/libicucore.A.dylib
    0x96c09000 - 0x96c09ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

Maybe you are looking for

  • My iPod touch keeps stopping every 45 min's when listening to the radio via an app. What to do?

    I listen to the radio via an app on my iPod touch, but every 45 min's or so the whole program stops and I have to reactivate the app, which is difficult in the middle of the night! Wifi connections is ok, iPod also fully charged. Please can anyone he

  • We are unable to activate your CS5.5 Design Premium

    Hello,    I'm unable to activate my CS5.5 product and getting the error as "We are unable to activate your CS5.5 Design Premium" and later it says Please connect to Internet. I tried all the possible steps mentioned in this forum and also followed th

  • DBMS_PROFILER - only anonymous

    I am trying to get over with DBMS_PROFILER, but I face a problem, that I can't get through. I followed the tutorial on this page: http://www.oracleflash.com/44/Write-fast-and-efficient-PLSQL---DBMS_PROFILER.html and everything was fine till I did not

  • Song list will not display?

    After restoring the system on my Ipad and reloading purchased applications, the song list only appeared for a short time. I can only see the "album" cover when music is playing. None of the other soft buttons on the bottom of the screen respond; e.g.

  • After updating, my app aren´t opening. helep me

    I did the updating to 5.0, now, my app aren´t working correct!!! My instagram isn´t opening