What is off-line?

By: Linus Torvalds (torvalds.delete@this.linux-foundation.org), January 21, 2011 1:51 pm
Room: Moderated Discussions
David Kanter (dkanter@realworldtech.com) on 1/21/11 wrote:
>
>Wow, that's ugly. The first 3 seem alright though.

Umm. As in 15% is "alright"? No, it's not. It's a 15%
performance degradation for the good case.

All for a very dubious improvement.

>Can you clarify what you mean by 'on-line' and 'off-line'?

So let's go back to Aaron's example of TRIM being "free()".

That's "on-line": actually freeing the storage while you're
actively doing the work. So a file delete does TRIM, because
it free's the diskspace.

IOW, on-line means that the disk basically always knows
what blocks are free, to a fairly high degree of accuracy.
Sure, it might be somewhat asynchronous, but it's doing
active "memory management" work while processing the load.

Now, what I'm claiming is that TRIM is too expensive, and
too damn flaky to be usable that way. It's not "just 8
bytes of command on the wire". It's a hell of a lot more.
It's a huge maintenance headache for both the filesystem
and the flash controller itself, during a time when
both have much better things to do, namely actually do
their load.

And I'm also claiming that the actual advantage of TRIM
isn't even big enough for it to make sense. The disk has
free remapping blocks for GC even without trim, in
the 5-10% range. TRIM is a relatively small incremental
improvement, it's not nearly as important as people seem
to think it is.

(One reason for that is that while random writes happen,
they are by no means the "bulk" of IO. Random writes are
very very important from a latency standpoint, because
they tend to be the kind of really important metadata
updates that you actually have to wait for, but they are
not generally all that common in a "big picture bandwidth"
kind of sense).

>My intuition is that if you have a period where the SSD is quiesced (say 200us
>where you aren't accessing the drive), that would be a fine time to do a little TRIMming.

I'm claiming that there's no point in talking about 200us
kind of timeframes. In those kinds of timeframes, TRIM
is always going to be a loss, for the simple reason that
most newly deleted blocks will be reused and then
TRIM is absolutely nothing but overhead.

This is the point that I really don't understand why
people don't "get". The alternative to TRIM is literally
to do absolutely nothing, and most blocks that are
free'd tend to be re-used.

Disk use tends to grow, not shrink, for chrissake!

Think about what that means for just one second. It means
that on average, you tend to write more than you delete.
So your default assumption will be that a disk
block that got free'd by the filesystem will be reused,
and overwritten again.

And since the bulk of the writes (by bandwidth) are
not random, on average you'll get fairly good patterns
again - without any TRIM at all.

Which means that doing TRIM on it is just stupid. It is
only overhead. The GC advantage is negligible.

And I posted how expensive trim is.

So INSTEAD of thinking of it like a "free()", think of
it as the "get rid of the heap entirely" operation.

So think of it as "process lifetime" vs "free() operation".
Because you don't want to do it at each "free()", you
want to do it when your whole IO job has finished entirely.

THAT is the kind of time-scale you should think about TRIM.
Not "if the disk is idle for 200us". More like "schedule
a cron-job once a week" kind of thing.

>So how much time does 'off-line' mean? Do you really mean that the drive has been taken out of the FS entirely?

No, it's reasonably technically easy to add simple support
for "let's trim the drive, and the filesystem will be a
bit slower while we do so". For example, most traditional
disk filesystems tend to split the logical disk (which may
be multiple physical disks, or just a partial one) into
"allocation groups" of some random size.

So you could - for example - have a background daemon that
just walks these allocation groups one at a time, and sets
a flag for "don't allocate in this group now", and then
looks at the free-block bitmap (or extent list, or whatever
data structure the filesystem uses for block allocation),
and does TRIM on any big chunks of free blocks.

So you can do it while the system is running - but it's
more of a defrag pass than anything you do in the filesystem
itself.

And we really are talking a timeframe of days or weeks,
not microseconds. Because exactly like defragmentation,
the whole and only point of TRIM is not the short-term
block allocation, it's the long-term issues.

>Do you mean ESP as in "magic crystal ball", or is this a technical term I'm not familiar with? : )

Yup, ESP as in "extra-sensory perception" aka "being able
to know IO patterns in advance".

Because really, think about the "filesystems grow, not
shrink" issue, and think about the fact that every single
write is an implied "trim".

And then think _really_ lazy TRIM support.

Linus
< Previous Post in ThreadNext Post in Thread >
TopicPosted ByDate
The ARM story: Earthquake looming?Will Smith2011/01/12 01:30 AM
  The ARM story: Earthquake looming?Max2011/01/12 02:50 AM
    Any x86 -> ARM port experience?Ben Harper2011/01/12 04:22 AM
      Any x86 -> ARM port experience?Michael S2011/01/12 07:52 AM
        Any x86 -> ARM port experience?Megol2011/01/12 10:10 AM
          Any x86 -> ARM port experience?Michael S2011/01/12 11:19 AM
            Any x86 -> ARM port experience?Wilco2011/01/12 12:47 PM
              badly written?Michael S2011/01/12 01:59 PM
                badly written?Wilco2011/01/12 03:03 PM
                  badly written?Megol2011/01/13 05:16 AM
                    badly written?Wilco2011/01/13 07:09 AM
                      badly written?Megol2011/01/14 03:28 AM
                        badly written?Wilco2011/01/14 07:20 AM
                  badly written?mpx2011/01/13 09:19 AM
                    badly written?James2011/01/14 04:15 AM
                  unaligned read is fast on NehalemRichard Cownie2011/01/13 10:10 AM
                    unaligned read is fast on NehalemLinus Torvalds2011/01/13 10:45 AM
                      l1 access size?anon2011/01/13 12:16 PM
                      unaligned read is fast on NehalemRichard Cownie2011/01/13 12:21 PM
                      unaligned read is fast on NehalemEduardoS2011/01/13 04:42 PM
                        unaligned read is fast on NehalemMichael S2011/01/13 04:50 PM
                        unaligned read is fast on NehalemRichard Cownie2011/01/13 05:50 PM
                      unaligned read is fast on NehalemKonrad Schwarz2011/01/17 07:28 AM
                badly written?anoneeeemouse2011/01/12 06:31 PM
              And endianness?Ben Harper2011/01/13 05:34 AM
                And endianness?rwessel2011/01/13 05:40 AM
                  And endianness?Wilco2011/01/13 06:20 AM
                    And endianness?Ben Harper2011/01/13 08:11 AM
                    And endianness?Konrad Schwarz2011/01/17 07:20 AM
                      And endianness?Megol2011/01/17 11:09 AM
        Any x86 -> ARM port experience?EduardoS2011/01/12 02:30 PM
      Any x86 -> ARM port experience?anon2011/01/12 10:53 AM
        Any x86 -> ARM port experience?anon2011/01/12 10:28 PM
          Any x86 -> ARM port experience?anon2011/01/12 10:52 PM
    The ARM story: Earthquake looming?Linus Torvalds2011/01/12 11:44 AM
      The ARM story: Earthquake looming?Wilco2011/01/12 03:53 PM
        The ARM story: Earthquake looming?anon2011/01/12 04:14 PM
          The ARM story: Earthquake looming?Wilco2011/01/12 04:20 PM
            The ARM story: Earthquake looming?anon2011/01/12 04:36 PM
              The ARM story: Earthquake looming?Wilco2011/01/12 05:17 PM
                The ARM story: Earthquake looming?Aaron Spink2011/01/12 05:46 PM
                  The ARM story: Earthquake looming?Wilco2011/01/12 05:54 PM
                The ARM story: Earthquake looming?anon2011/01/12 05:49 PM
                  The ARM story: Earthquake looming?Wilco2011/01/12 06:20 PM
                    The ARM story: Earthquake looming?anon2011/01/12 07:20 PM
                      The ARM story: Earthquake looming?Wilco2011/01/12 08:51 PM
                    Some CoreMark resultsPaul A. Clayton2011/01/12 07:41 PM
                      Some CoreMark resultsWilco2011/01/12 10:49 PM
                        Some CoreMark resultsPaul A. Clayton2011/01/13 09:14 AM
                          Some CoreMark resultsWilco2011/01/13 12:31 PM
                            Some CoreMark resultsLinus Torvalds2011/01/13 12:36 PM
                              Some CoreMark resultsanonymous2011/01/13 01:05 PM
                              Some CoreMark resultsWilco2011/01/13 01:15 PM
                                Some CoreMark resultsLinus Torvalds2011/01/13 03:02 PM
                                  Some CoreMark resultsWilco2011/01/14 08:24 AM
                                    Some CoreMark resultsnone2011/01/14 08:55 AM
        The ARM story: Earthquake looming?Linus Torvalds2011/01/12 04:21 PM
          The ARM story: Earthquake looming?Wilco2011/01/12 05:07 PM
            The ARM story: Earthquake looming?Linus Torvalds2011/01/12 06:07 PM
              The ARM story: Earthquake looming?Michael S2011/01/13 04:33 AM
                The ARM story: Earthquake looming?Linus Torvalds2011/01/13 09:19 AM
                  The ARM story: Earthquake looming?Megol2011/01/14 04:51 AM
          The ARM story: Earthquake looming?anon2011/01/12 05:09 PM
            The ARM story: Earthquake looming?Linus Torvalds2011/01/12 06:09 PM
              The ARM story: Earthquake looming?anonymous2011/01/13 06:50 AM
                The ARM story: Earthquake looming?Michael S2011/01/13 07:52 AM
                The ARM story: Earthquake looming?Linus Torvalds2011/01/13 10:28 AM
                  The ARM story: Earthquake looming??2011/01/14 08:48 AM
                    The ARM story: Earthquake looming?none2011/01/14 09:01 AM
                      The ARM story: Earthquake looming?someone2011/01/14 11:03 AM
                        The ARM story: Earthquake looming?none2011/01/14 03:38 PM
                          The ARM story: Earthquake looming?someone2011/01/15 10:53 AM
                        The ARM story: Earthquake looming?mpx2011/01/15 01:18 AM
                          The ARM story: Earthquake looming?Aaron Spink2011/01/15 06:03 AM
                            The ARM story: Earthquake looming?Brett2011/01/15 12:01 PM
                              The ARM story: Earthquake looming?mpx2011/01/15 01:40 PM
                              The ARM story: Earthquake looming?Aaron Spink2011/01/17 04:11 PM
                                The ARM story: Earthquake looming?Rob Thorpe2011/01/17 04:35 PM
                                  The ARM story: Earthquake looming?Michael S2011/01/17 05:23 PM
                                    As you can see...Rob Thorpe2011/01/17 06:52 PM
                                  The ARM story: Earthquake looming?Aaron Spink2011/01/17 05:57 PM
                              The ARM story: Earthquake looming?Greg Gritton2011/01/17 11:57 PM
                                The ARM story: Earthquake looming?Brett2011/01/18 11:00 AM
                                  The ARM story: Earthquake looming?Megol2011/01/18 11:11 AM
                              The ARM story: Earthquake looming?Max2011/01/18 01:34 AM
                                The ARM story: Earthquake looming?Brett2011/01/18 10:39 AM
                                  AppleDavid Kanter2011/01/18 11:22 AM
                                  The ARM story: Earthquake looming?Max2011/01/18 12:17 PM
                                  The ARM story: Earthquake looming?Rob Thorpe2011/01/18 03:36 PM
                                    The ARM story: Earthquake looming?Brett2011/01/18 06:00 PM
                                      The ARM story: Earthquake looming?David Kanter2011/01/18 07:44 PM
                                        The ARM story: Earthquake looming?rwessel2011/01/18 09:19 PM
                                        Definition of SOCRob Thorpe2011/01/19 02:24 PM
                                      The ARM story: Earthquake looming?Aaron Spink2011/01/18 11:26 PM
                                        The ARM story: Earthquake looming?Brett2011/01/19 01:57 AM
                                          The ARM story: Earthquake looming?Aaron Spink2011/01/19 02:15 AM
                                            Pioneers get arrows in their backsBrett2011/01/19 07:08 PM
                                              Pioneers get arrows in their backsAaron Spink2011/01/19 08:22 PM
                                          Plausible ID, HCI translationPaul A. Clayton2011/01/19 09:18 AM
                                          Quad pixel?David Kanter2011/01/19 02:37 PM
                                            Quad pixel?Brett2011/01/19 03:53 PM
                                              Quad pixel?David Kanter2011/01/19 08:10 PM
                                            TRIM (was Quad pixel?)Linus Torvalds2011/01/19 05:22 PM
                                              TRIM (was Quad pixel?)Aaron Spink2011/01/19 08:15 PM
                                                TRIM (was Quad pixel?)anon2011/01/19 09:11 PM
                                                TRIM (was Quad pixel?)Linus Torvalds2011/01/19 09:12 PM
                                                  TRIM (was Quad pixel?)iz2011/01/19 10:03 PM
                                                    TRIM (was Quad pixel?)Linus Torvalds2011/01/19 10:52 PM
                                                      TRIM (was Quad pixel?)Aaron Spink2011/01/19 11:35 PM
                                                        TRIM (was Quad pixel?)anon2011/01/19 11:43 PM
                                                          TRIM (was Quad pixel?)Aaron Spink2011/01/20 12:23 AM
                                                            TRIM (was Quad pixel?)anon2011/01/20 01:00 AM
                                                              TRIM (was Quad pixel?)mpx2011/01/20 02:34 PM
                                                                TRIM (was Quad pixel?)anon2011/01/20 04:29 PM
                                                            TRIM (was Quad pixel?)Linus Torvalds2011/01/20 09:34 AM
                                                              TRIM (was Quad pixel?)Ricardo B2011/01/20 11:25 AM
                                                                TRIM (was Quad pixel?)Linus Torvalds2011/01/20 11:51 AM
                                                                  TRIM (was Quad pixel?)Aaron Spink2011/01/20 01:28 PM
                                                                    TRIM (was Quad pixel?)anon2011/01/20 02:00 PM
                                                                      TRIM (was Quad pixel?)Aaron Spink2011/01/20 03:52 PM
                                                                        TRIM (was Quad pixel?)anon2011/01/20 04:30 PM
                                                                  TRIM (was Quad pixel?)Ricardo B2011/01/20 01:36 PM
                                                                    TRIM (was Quad pixel?)Linus Torvalds2011/01/20 04:57 PM
                                                                      TRIM (was Quad pixel?)Ricardo B2011/01/20 06:14 PM
                                                                        TRIM (was Quad pixel?)MS2011/01/21 09:06 AM
                                                              TRIM (was Quad pixel?)Aaron Spink2011/01/20 01:19 PM
                                                              TRIM (was Quad pixel?)mpx2011/01/21 05:45 AM
                                                                TRIM (was Quad pixel?)James2011/01/21 07:37 AM
                                                                  TRIM (was Quad pixel?)mpx2011/01/21 03:10 PM
                                                              databases and filesystemsFoo_2011/01/21 06:26 AM
                                                      TRIM (was Quad pixel?)iz2011/01/20 12:45 AM
                                                        TRIM (was Quad pixel?)Linus Torvalds2011/01/20 09:54 AM
                                                          TRIM (was Quad pixel?)iz2011/01/20 11:28 PM
                                                  TRIM (was Quad pixel?)anon2011/01/19 10:34 PM
                                                    TRIM (was Quad pixel?)Doug Siebert2011/01/19 11:48 PM
                                                      TRIM (was Quad pixel?)anon2011/01/19 11:59 PM
                                                        TRIM - How about we use LBA and PBA?Aaron Spink2011/01/20 12:06 AM
                                                          TRIM - How about we use LBA and PBA?anon2011/01/20 12:10 AM
                                                        TRIM (was Quad pixel?)Aaron Spink2011/01/20 05:23 PM
                                                  TRIM (was Quad pixel?)Anon2011/01/19 10:58 PM
                                                  TRIM (was Quad pixel?)Aaron Spink2011/01/19 11:04 PM
                                                    TRIM (was Quad pixel?)anon2011/01/19 11:34 PM
                                                      TRIM (was Quad pixel?)Aaron Spink2011/01/19 11:59 PM
                                                        TRIM (was Quad pixel?)anon2011/01/20 12:18 AM
                                                          TRIM (was Quad pixel?)Aaron Spink2011/01/20 12:54 AM
                                                            TRIM (was Quad pixel?)anon2011/01/20 01:12 AM
                                                              TRIM (was Quad pixel?)Aaron Spink2011/01/20 01:44 AM
                                                                TRIM (was Quad pixel?)anon2011/01/20 08:56 AM
                                                                  TRIM (was Quad pixel?)anon2011/01/20 08:59 AM
                                                                  TRIM (was Quad pixel?)Aaron Spink2011/01/20 01:33 PM
                                                                    TRIM (was Quad pixel?)anon2011/01/20 04:55 PM
                                                                      TRIM (was Quad pixel?)Aaron Spink2011/01/20 05:14 PM
                                                                        TRIM (was Quad pixel?)anon2011/01/20 06:14 PM
                                                                          TRIM (was Quad pixel?)Aaron Spink2011/01/20 08:38 PM
                                                                            TRIM (was Quad pixel?)anon2011/01/20 09:16 PM
                                                                TRIM (was Quad pixel?)mpx2011/01/20 03:58 PM
                                                                Supercapsslacker2011/01/20 04:57 PM
                                                                  SupercapsAaron Spink2011/01/20 05:20 PM
                                                                    Supercapsslacker2011/01/20 05:43 PM
                                                                      SupercapsAaron Spink2011/01/20 08:25 PM
                                                                        Supercapsslacker2011/01/20 11:02 PM
                                                                          SupercapsMS2011/01/21 01:37 PM
                                                    TRIM (was Quad pixel?)Linus Torvalds2011/01/20 09:58 AM
                                                TRIM (was Quad pixel?)ajensen2011/01/21 03:23 AM
                                                  Mythical SSDsRicardo B2011/01/21 06:27 AM
                                                    Mythical SSDsLinus Torvalds2011/01/21 10:24 AM
                                                      Mythical SSDsanon2011/01/21 12:00 PM
                                                      What is off-line?David Kanter2011/01/21 12:09 PM
                                                        What is off-line?Linus Torvalds2011/01/21 01:51 PM
                                                        What is off-line?Octoploid2011/01/21 02:04 PM
                                                      Mythical SSDsajensen2011/01/21 12:28 PM
                                                      Mythical SSDsAaron Spink2011/01/21 12:58 PM
                                                        Mythical SSDsLinus Torvalds2011/01/21 01:21 PM
                                                          Mythical SSDsAaron Spink2011/01/21 04:13 PM
                                                            Mythical SSDsanon2011/01/21 07:47 PM
                                                      Mythical SSDsmpx2011/01/22 01:01 AM
                                                        Mythical SSDsanon2011/01/22 02:08 AM
                                                      Mythical Linus?2011/01/25 07:16 AM
                                                        Mythical LinusUngo2011/01/25 12:35 PM
                                                        Mythical LinusDean Kent2011/01/25 01:14 PM
                                                        Filesystem impactDavid Kanter2011/01/25 01:16 PM
                                                          Filesystem impactUngo2011/01/25 03:15 PM
                                                            Filesystem impactiz2011/01/25 05:18 PM
                                                              Filesystem impactAaron Spink2011/01/26 01:25 PM
                                                          Filesystem impactFoo_2011/01/25 05:14 PM
                                                            Filesystem impactiz2011/01/25 05:24 PM
                                                              Filesystem impactAaron Spink2011/01/26 01:27 PM
                                                                Filesystem impactRobert Myers2011/01/26 06:43 PM
                                                                  Filesystem impactanon2011/01/26 08:29 PM
                                                                Filesystem impactanon2011/01/26 07:19 PM
                                                          Filesystem impactGroo2011/01/25 07:42 PM
                                                            Filesystem impactiz2011/01/25 10:03 PM
                                                              Filesystem impactmpx2011/01/26 02:15 AM
                                                                Filesystem impactiz2011/01/26 03:14 AM
                                                          Windows 7 and SSDs: Setup secrets and tune-up tweaks_Arthur2011/01/26 06:59 PM
                                              TRIMiz2011/01/19 09:54 PM
                                                TRIMAaron Spink2011/01/19 11:43 PM
                                                  TRIMiz2011/01/20 01:01 AM
                                                    TRIMAaron Spink2011/01/20 01:25 AM
                                                      TRIMiz2011/01/20 04:29 AM
                                              TRIM (was Quad pixel?)Megol2011/01/20 03:29 AM
                                                TRIM (was Quad pixel?)Linus Torvalds2011/01/20 10:05 AM
                                                  TRIM (was Quad pixel?)Rob Thorpe2011/01/22 01:30 PM
                                                    TRIM (was Quad pixel?)anon2011/01/22 07:07 PM
                                                      TRIMDavid Kanter2011/01/24 02:05 PM
                                                        TRIManon2011/01/24 02:57 PM
                                                          TRIMMS2011/01/24 03:22 PM
                                                            TRIMDan Downs2011/01/24 06:44 PM
                                                              TRIMDan Downs2011/01/24 06:51 PM
                                                            TRIManon2011/01/24 07:29 PM
                                                              TRIMMS2011/01/24 08:40 PM
                                                            TRIMRicardo B2011/01/25 03:40 PM
                                                        TRIMAnon2011/01/24 06:37 PM
                                                          TRIMRichard Cownie2011/01/24 07:45 PM
                                                            TRIMAaron Spink2011/01/24 07:53 PM
                                                              TRIMAnon2011/01/24 09:28 PM
                                                                TRIMRichard Cownie2011/01/25 07:39 AM
                                                                  TRIM Linus is rightgallier22011/01/25 11:18 AM
                                                                    TRIM Linus is rightMax2011/01/25 12:30 PM
                                                                      TRIM Linus is rightMichael S2011/01/25 01:17 PM
                                                                        TRIM Linus is rightMax2011/01/25 06:15 PM
                                                                        TRIM Linus is rightAnon2011/01/25 09:09 PM
                                                                          TRIM Linus is rightgallier22011/01/26 02:26 AM
                                                                          TRIM Linus is rightanon2011/01/26 09:30 PM
                                                                        TRIM Linus is rightRicardo B2011/01/26 02:12 AM
                                                                          TRIM Linus is rightiz2011/01/26 03:19 AM
                                                                            Linus is wrong - TRIM is *essential*?2011/01/26 05:04 AM
                                                                              Linus is wrong - TRIM is *essential*Meeple2011/01/26 04:34 PM
                                                                              Linus is wrong - TRIM is *essential*iz2011/01/26 08:01 PM
                                                                              Linus is wrong - TRIM is *essential*anon2011/01/26 08:40 PM
                                                                                Linus is wrong - TRIM is *essential*David Kanter2011/01/26 09:09 PM
                                                                                  Linus is wrong - TRIM is *essential*anon2011/01/26 09:40 PM
                                                                            TRIM Linus is rightMS2011/01/26 12:03 PM
                                                                              TRIM Linus is rightMichael S2011/01/26 12:48 PM
                                                                                TRIM Linus is rightMS2011/01/26 01:30 PM
                                                                              Relative latencyDavid Kanter2011/01/26 01:09 PM
                                                                                Relative latencyMS2011/01/26 01:34 PM
                                                                                  NAND flash latenciesslacker2011/01/26 07:14 PM
                                                                                    NAND flash latenciesiz2011/01/26 08:18 PM
                                                                                      NAND flash latencies -- Correctionslacker2011/01/26 08:58 PM
                                                                                        NAND flash latencies -- Correctioniz2011/01/27 12:58 AM
                                                                                          NAND flash latencies -- CorrectionDavid Kanter2011/01/27 01:54 AM
                                                                                            NAND flash latencies -- CorrectionRicardo B2011/01/27 04:42 AM
                                                                                              NAND flash latencies -- Correctioniz2011/01/27 07:54 PM
                                                                                                NAND flash latencies -- CorrectionRicardo B2011/01/28 06:02 AM
                                                                                                  NAND flash latencies -- CorrectionMS2011/01/28 03:06 PM
                                                                                                  NAND flash latencies -- Correctioniz2011/01/28 05:12 PM
                                                                                Relative latencyRicardo B2011/01/26 03:23 PM
                                                                                  Relative latencyMS2011/01/26 04:16 PM
                                                                        TRIM Linus is rightJames2011/01/26 05:26 AM
                                                                      TRIM Linus is rightgallier22011/01/25 02:46 PM
                                                                    TRIM Linus is rightMS2011/01/25 03:10 PM
                                                                      Linus is HALF rightDarrell Coker2011/01/25 07:36 PM
                                                                        Linus is HALF rightRicardo B2011/01/26 01:52 AM
                                                                        EXT4 *not* heavily optimized for rotating media?2011/01/26 02:34 AM
                                                                  TRIMAnon2011/01/25 09:00 PM
                                              The alternative to TRIMMax2011/01/20 11:35 AM
                                                The alternative to TRIManon2011/01/20 04:57 PM
                                                  The alternative to TRIMMax2011/01/21 02:27 AM
                                                The alternative to TRIMDan Downs2011/01/20 05:18 PM
                                                  The alternative to TRIMAaron Spink2011/01/20 05:34 PM
                                                    The alternative to TRIMLinus Torvalds2011/01/20 06:16 PM
                                                      The alternative to TRIMGabriele Svelto2011/01/22 02:10 AM
                                                    The alternative to TRIMDan Downs2011/01/20 07:12 PM
                                                      The alternative to TRIMAaron Spink2011/01/20 08:34 PM
                                                Another Alternative to TrimMark Christiansen2011/01/22 12:07 PM
                                                  Another Alternative to Trimiz2011/01/22 06:43 PM
                                                    Another Alternative to TrimLinus Torvalds2011/01/22 09:12 PM
                                                      Another Alternative to TrimAaron Spink2011/01/23 02:01 AM
                                                      Another Alternative to Trimiz2011/01/23 05:20 AM
                                                      Another Alternative to Trimmpx2011/01/23 12:00 PM
                                                        Another Alternative to Trimiz2011/01/23 06:10 PM
                                              TRIM vs. GC for SSD Longevitympx2011/01/20 02:19 PM
                                                TRIM vs. GC for SSD Longevityiz2011/01/20 07:05 PM
                                                  TRIM vs. GC for SSD Longevitympx2011/01/21 03:29 AM
                                                    TRIM vs. GC for SSD Longevityanon2011/01/21 07:51 PM
                                                TRIM vs. GC for SSD LongevityAaron Spink2011/01/20 08:42 PM
                                                  TRIM vs. GC for SSD LongevityMS2011/01/21 06:07 PM
                                            Quad pixel?Anon2011/01/19 10:48 PM
                                            Quad pixel?mpx2011/01/20 08:40 AM
                                      The ARM story: Earthquake looming?Rob Thorpe2011/01/19 01:57 PM
                                        The ARM story: Earthquake looming?Brett2011/01/19 03:35 PM
                                          The ARM story: Earthquake looming?Aaron Spink2011/01/19 08:30 PM
                                            Apollo ComputerBrett2011/01/19 09:52 PM
                                      iPad 2 display same as iPadDavid Kanter2011/02/02 11:12 AM
                                        iPad 2 display same as iPadBrett2011/02/02 01:30 PM
                                          iPad 2 display same as iPadMark Roulo2011/02/02 02:25 PM
                                            iPad 2 display same as iPadBrett2011/02/02 02:59 PM
                                            iPad 2 display same as iPadRichard Cownie2011/02/03 10:30 AM
                                          iPad 2 display same as iPadAnon2011/02/02 04:08 PM
                                        iPad 2 display same as iPadRob Thorpe2011/02/03 11:42 AM
                                The ARM story: Earthquake looming?Ungo2011/01/19 05:54 AM
                            The ARM story: Earthquake looming?mpx2011/01/15 01:32 PM
                              The ARM story: Earthquake looming?Aaron Spink2011/01/17 04:20 PM
                            The ARM story: Earthquake looming?slacker2011/01/15 04:03 PM
                        Intel GMs for low-endDavid Kanter2011/01/18 11:05 AM
                    The ARM story: Earthquake looming?Linus Torvalds2011/01/14 09:29 AM
                      The ARM story: Earthquake looming?a reader2011/01/14 07:25 PM
                        The ARM story: Earthquake looming?Foo_2011/01/15 03:12 AM
                          The ARM story: Earthquake looming?Matt Sayler2011/01/15 12:25 PM
                            The ARM story: Earthquake looming?IntelUser20002011/01/16 05:20 PM
                              The ARM story: Earthquake looming?Matt Sayler2011/01/16 06:02 PM
                                The ARM story: Earthquake looming?Megol2011/01/17 10:18 AM
                                  The ARM story: Earthquake looming?Brett2011/01/17 04:58 PM
                                    The ARM story: Earthquake looming?Louis Gerbarg2011/01/17 06:12 PM
                                      The ARM story: Earthquake looming?Brett2011/01/17 08:06 PM
                                        The ARM story: Earthquake looming?Louis Gerbarg2011/01/18 10:13 AM
                                        The ARM story: Earthquake looming?Rob Thorpe2011/01/18 03:23 PM
                                      Nice postDavid Kanter2011/01/18 11:38 AM
                            New MacBook Pros are getting closerMatt Sayler2011/02/24 09:46 AM
                      The ARM story: Earthquake looming??2011/01/16 09:29 AM
                        The ARM story: Earthquake looming?anon2011/01/16 10:08 PM
                        The ARM story: Earthquake looming?Gabriele Svelto2011/01/17 12:43 AM
                  The ARM story: Earthquake looming?Robert Myers2011/01/14 06:29 PM
                    The ARM story: Earthquake looming?Max2011/01/15 07:18 AM
        The ARM story: Earthquake looming?Groo2011/01/12 04:59 PM
          The ARM story: Earthquake looming?Wilco2011/01/12 05:40 PM
            The ARM story: Earthquake looming?Groo2011/01/12 09:14 PM
        The ARM story: Earthquake looming?Adrian2011/01/13 02:35 PM
          The ARM story: Earthquake looming?Paul2011/01/13 05:19 PM
            The ARM story: Earthquake looming?Adrian2011/01/14 03:50 AM
              The ARM story: Earthquake looming?Wilco2011/01/14 07:00 AM
                The ARM story: Earthquake looming?none2011/01/14 07:26 AM
                  The ARM story: Earthquake looming?Wilco2011/01/14 07:46 AM
                    The ARM story: Earthquake looming?none2011/01/14 08:02 AM
                    The ARM story: Earthquake looming?Linus Torvalds2011/01/14 09:42 AM
                      The ARM story: Earthquake looming?Richard Cownie2011/01/14 10:06 AM
                        The ARM story: Earthquake looming?someone2011/01/14 11:20 AM
                          The ARM story: Earthquake looming?fastpathguru2011/01/14 12:22 PM
                          The ARM story: Earthquake looming?Richard Cownie2011/01/14 06:01 PM
                            The ARM story: Earthquake looming?Aaron Spink2011/01/15 06:07 AM
                            The ARM story: Earthquake looming?slacker2011/01/15 04:08 PM
                              The ARM story: Earthquake looming?Jukka Larja2011/01/16 01:44 AM
                          The ARM story: Earthquake looming?mpx2011/01/15 05:08 AM
                            The ARM story: Earthquake looming?Paul2011/01/15 09:20 AM
                        The ARM story: 64 bit or bust?Kevin G2011/01/14 05:21 PM
                          The ARM story: 64 bit or bust?someone2011/01/15 10:48 AM
                      Bye, bye native binarympx2011/01/15 12:51 AM
                        Bye, bye native binaryExophase2011/01/18 06:39 PM
                      RISC with 16 GPRs!?anon2011/01/19 05:42 PM
                        RISC with 16 GPRs!?Exophase2011/01/19 06:20 PM
                        doomed ARM sells 6B cores/yearRichard Cownie2011/01/19 10:01 PM
      The ARM story: Earthquake looming?anon2011/01/12 10:30 PM
      The ARM story: Earthquake looming?mpx2011/01/13 04:05 AM
  Not a chance in hellRohit2011/01/12 07:49 AM
  The ARM story: Earthquake looming?notsure2011/01/12 12:39 PM
  The ARM story: Earthquake looming?mpx2011/01/13 04:27 AM
  The _Android_ story: Earthquake looming?fastpathguru2011/01/13 11:50 AM
    Internet + web apps + multimedia = enablermpx2011/01/14 02:11 AM
    The _Android_ story: Earthquake looming?Will Smith2011/01/14 09:48 AM
  Notebook vendors show no interest in Oak Trail Nicki Minaj2011/01/16 06:37 PM
Reply to this Topic
Name:
Email:
Topic:
Body: No Text
How do you spell tangerine? 🍊