1. 14 4月, 2009 1 次提交
  2. 16 3月, 2009 1 次提交
    • J
      Rationalize fasync return values · 60aa4924
      Jonathan Corbet 提交于
      Most fasync implementations do something like:
      
           return fasync_helper(...);
      
      But fasync_helper() will return a positive value at times - a feature used
      in at least one place.  Thus, a number of other drivers do:
      
           err = fasync_helper(...);
           if (err < 0)
                   return err;
           return 0;
      
      In the interests of consistency and more concise code, it makes sense to
      map positive return values onto zero where ->fasync() is called.
      
      Cc: Al Viro <viro@ZenIV.linux.org.uk>
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      60aa4924
  3. 02 11月, 2008 1 次提交
    • A
      saner FASYNC handling on file close · 233e70f4
      Al Viro 提交于
      As it is, all instances of ->release() for files that have ->fasync()
      need to remember to evict file from fasync lists; forgetting that
      creates a hole and we actually have a bunch that *does* forget.
      
      So let's keep our lives simple - let __fput() check FASYNC in
      file->f_flags and call ->fasync() there if it's been set.  And lose that
      crap in ->release() instances - leaving it there is still valid, but we
      don't have to bother anymore.
      Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      233e70f4
  4. 29 10月, 2008 1 次提交
  5. 09 9月, 2008 1 次提交
  6. 13 8月, 2008 1 次提交
  7. 13 6月, 2008 1 次提交
  8. 01 2月, 2008 2 次提交
    • T
      [ALSA] Remove sound/driver.h · 9004acc7
      Takashi Iwai 提交于
      This header file exists only for some hacks to adapt alsa-driver
      tree.  It's useless for building in the kernel.  Let's move a few
      lines in it to sound/core.h and remove it.
      With this patch, sound/driver.h isn't removed but has just a single
      compile warning to include it.  This should be really killed in
      future.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      Signed-off-by: NJaroslav Kysela <perex@perex.cz>
      9004acc7
    • T
      [ALSA] Remove indirect control access · 8ace4f3c
      Takashi Iwai 提交于
      This patch removes the indirect control access to the control elements.
      The indirect access has never been used and is even broken on 32bit
      ioctl wrapper.  Let's clean it up.
      The pointers still remain in snd_ctl_elem_* structs just to make sure
      that the struct size won't change.  Once after checking the size
      consistency, we can get rid of them, too.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      Signed-off-by: NJaroslav Kysela <perex@perex.cz>
      8ace4f3c
  9. 23 10月, 2007 1 次提交
  10. 16 10月, 2007 3 次提交
  11. 09 5月, 2007 1 次提交
  12. 13 2月, 2007 1 次提交
  13. 09 2月, 2007 2 次提交
  14. 20 12月, 2006 1 次提交
  15. 22 10月, 2006 1 次提交
  16. 23 9月, 2006 6 次提交
  17. 23 6月, 2006 1 次提交
  18. 31 3月, 2006 1 次提交
  19. 22 3月, 2006 2 次提交
  20. 07 3月, 2006 1 次提交
  21. 03 1月, 2006 5 次提交
  22. 04 11月, 2005 1 次提交
  23. 12 9月, 2005 1 次提交
  24. 22 6月, 2005 1 次提交
  25. 29 5月, 2005 1 次提交
  26. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4