mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.9 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/linux/linux26/76-no-new-variable.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- ./include/asm-i386/system.h.vanilla 2006-01-10 17:46:21.000000000 +0100
  20. +++ ./include/asm-i386/system.h 2006-01-10 17:48:39.000000000 +0100
  21. @@ -269,26 +269,26 @@
  22. #endif
  23. static inline unsigned long __cmpxchg(volatile void *ptr, unsigned long old,
  24. - unsigned long new, int size)
  25. + unsigned long ulnew, int size)
  26. {
  27. unsigned long prev;
  28. switch (size) {
  29. case 1:
  30. __asm__ __volatile__(LOCK_PREFIX "cmpxchgb %b1,%2"
  31. : "=a"(prev)
  32. - : "q"(new), "m"(*__xg(ptr)), "0"(old)
  33. + : "q"(ulnew), "m"(*__xg(ptr)), "0"(old)
  34. : "memory");
  35. return prev;
  36. case 2:
  37. __asm__ __volatile__(LOCK_PREFIX "cmpxchgw %w1,%2"
  38. : "=a"(prev)
  39. - : "r"(new), "m"(*__xg(ptr)), "0"(old)
  40. + : "r"(ulnew), "m"(*__xg(ptr)), "0"(old)
  41. : "memory");
  42. return prev;
  43. case 4:
  44. __asm__ __volatile__(LOCK_PREFIX "cmpxchgl %1,%2"
  45. : "=a"(prev)
  46. - : "r"(new), "m"(*__xg(ptr)), "0"(old)
  47. + : "r"(ulnew), "m"(*__xg(ptr)), "0"(old)
  48. : "memory");
  49. return prev;
  50. }