[Linus]
>  - pre5
>     - truncate. Guess what? We threw away the key to the clue-box.
>     - simplify signal notification. And remember the spinlock.
>     - VIA ide driver update (well, rewrite - the old one was buggy and broken)

Can someone explain this line from the VIA update?

  #define FIT(v,min,max) (((v)>(max)?(max):(v))<(min)?(min):(v))

Barring side effects on the variables, it is equivalent to

  #define FIT(v,min,max) ((v)<(min)?(min):(v))

Why do I get the feeling that this was *not* the intent?

Peter
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to