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.

13 lines
367 B

  1. Index: cryptodev-linux-1.7/ioctl.c
  2. ===================================================================
  3. --- cryptodev-linux-1.7.orig/ioctl.c
  4. +++ cryptodev-linux-1.7/ioctl.c
  5. @@ -546,7 +546,7 @@ static int
  6. clonefd(struct file *filp)
  7. {
  8. int ret;
  9. - ret = get_unused_fd();
  10. + ret = get_unused_fd_flags(0);
  11. if (ret >= 0) {
  12. get_file(filp);
  13. fd_install(ret, filp);