All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jose Goncalves <jose.goncalves@inov.pt>
To: bluez-devel@lists.sourceforge.net
Subject: [Bluez-devel] Bug in compat_ppoll
Date: Thu, 06 Mar 2008 16:50:25 +0000	[thread overview]
Message-ID: <47D020D1.9020204@inov.pt> (raw)

Hi,

When I was cross-compiling Bluez for a system without the ppoll() system
call, I've found a bug on you ppoll() stub, compat_ppoll(), that causes
rfcomm to eat all CPU power when called in this way:

$ rfcomm listen 0 1 <cmd>

After the RFCOMM connection is established and the command is executed
the CPU load reaches 100%.

This patch solved my problem:

diff -Naur bluez-utils-3.27.orig/common/ppoll.h
bluez-utils-3.27/common/ppoll.h
--- bluez-utils-3.27.orig/common/ppoll.h    2007-05-20
09:28:28.000000000 +0100
+++ bluez-utils-3.27/common/ppoll.h 2008-03-06 15:56:02.000000000 +0000
@@ -7,5 +7,10 @@
 static inline int compat_ppoll(struct pollfd *fds, nfds_t nfds,
        const struct timespec *timeout, const sigset_t *sigmask)
 {
-   return poll(fds, nfds, timeout ? timeout->tv_sec * 1000 : 500);
+   if (timeout =3D=3D NULL)
+       return poll(fds, nfds, -1);
+   else if (timeout->tv_sec =3D=3D 0)
+       return poll(fds, nfds, 500);
+   else
+       return poll(fds, nfds, timeout->tv_sec * 1000);
 }

Regards,
Jos=E9 Miguel Gon=E7alves


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

             reply	other threads:[~2008-03-06 16:50 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-06 16:50 Jose Goncalves [this message]
2008-03-07 14:19 ` [Bluez-devel] Bug in compat_ppoll Marcel Holtmann
2008-03-07 14:43   ` Jose Goncalves

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=47D020D1.9020204@inov.pt \
    --to=jose.goncalves@inov.pt \
    --cc=bluez-devel@lists.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.