/net-print/cups/files/cups-2.0.2-poll-CPU-loop-STR-4605.patch

https://gitlab.com/rindeal/gentoo-cvs-history-archive · Patch · 48 lines · 40 code · 8 blank · 0 comment · 0 complexity · 72ffd1bb47c2d4274fc95726410d425a MD5 · raw file

  1. http://cups.org/str.php?L4605+P-1+S-2+C0+I0+E0+Q100%25
  2. https://bugs.gentoo.org/show_bug.cgi?id=549732
  3. commit bb00c43fccb5aa2dec8e03bd9783e1ee267266a7
  4. Author: msweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
  5. Date: Wed May 6 18:01:04 2015 +0000
  6. The scheduler could get caught in a busy loop (STR #4605)
  7. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12613 a1ca3aef-8c08-0410-bb20-df032aa958be
  8. diff --git a/scheduler/client.c b/scheduler/client.c
  9. index c5a9960..50464a5 100644
  10. --- a/scheduler/client.c
  11. +++ b/scheduler/client.c
  12. @@ -585,6 +585,17 @@ cupsdReadClient(cupsd_client_t *con) /* I - Client to read from */
  13. * connection and we need to shut it down...
  14. */
  15. + if (!httpGetReady(con->http) && recv(httpGetFd(con->http), buf, 1, MSG_PEEK) < 1)
  16. + {
  17. + /*
  18. + * Connection closed...
  19. + */
  20. +
  21. + cupsdLogClient(con, CUPSD_LOG_DEBUG, "Closing on EOF.");
  22. + cupsdCloseClient(con);
  23. + return;
  24. + }
  25. +
  26. cupsdLogClient(con, CUPSD_LOG_DEBUG, "Closing on unexpected HTTP read state %s.",
  27. httpStateString(httpGetState(con->http)));
  28. cupsdCloseClient(con);
  29. @@ -1979,12 +1990,6 @@ cupsdReadClient(cupsd_client_t *con) /* I - Client to read from */
  30. if (httpGetState(con->http) == HTTP_STATE_POST_SEND)
  31. {
  32. - /*
  33. - * Don't listen for activity until we decide to do something with this...
  34. - */
  35. -
  36. - cupsdAddSelect(httpGetFd(con->http), NULL, NULL, con);
  37. -
  38. if (con->file >= 0)
  39. {
  40. fstat(con->file, &filestats);