1. 25 4月, 2007 3 次提交
  2. 22 4月, 2007 3 次提交
  3. 31 3月, 2007 2 次提交
  4. 26 3月, 2007 2 次提交
  5. 24 3月, 2007 2 次提交
  6. 23 3月, 2007 2 次提交
  7. 21 3月, 2007 1 次提交
    • J
      [CRYPTO] doc: Fix typo in hash example · 58e40308
      Johannes Schlumberger 提交于
      there is a tiny bug in Documentation/crypto/api-intro.txt.
      The file has the following example code:
      
      struct scatterlist sg[2];
      [...]
      if (crypto_hash_digest(&desc, &sg, 2, result))
      
      which does not match the declaration of crypto_hash_digest() in
      include/linux/crypto.h.
      
      (static inline int crypto_hash_digest(struct hash_desc *desc,
      	struct scatterlist *sg, unsigned int nbytes, u8 *out)
      
      The code in the example passes the address of a pointer (an array actually) as
      the second argument, while the function expects the pointer itself.
      
      I have attached a patch to fix this.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      58e40308
  8. 17 3月, 2007 1 次提交
  9. 15 3月, 2007 2 次提交
  10. 14 3月, 2007 1 次提交
  11. 11 3月, 2007 2 次提交
  12. 09 3月, 2007 1 次提交
  13. 07 3月, 2007 2 次提交
  14. 06 3月, 2007 2 次提交
  15. 05 3月, 2007 3 次提交
  16. 04 3月, 2007 2 次提交
  17. 02 3月, 2007 3 次提交
  18. 01 3月, 2007 1 次提交
  19. 27 2月, 2007 1 次提交
  20. 24 2月, 2007 1 次提交
    • A
      USB: make autosuspend delay a module parameter · b5e795f8
      Alan Stern 提交于
      This patch (as859) makes the default USB autosuspend delay a module
      parameter of usbcore.  By setting the delay value at boot time, users
      will be able to prevent the system from autosuspending devices which
      for some reason can't handle it.
      
      The patch also stores the autosuspend delay as a per-device value.  A
      later patch will allow the user to change the value, tailoring the
      delay for each individual device.  A delay value of 0 will prevent
      autosuspend.
      Signed-off-by: NAlan Stern <stern@rowland.harvard.edu>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      b5e795f8
  21. 21 2月, 2007 3 次提交