Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Dnsmasq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Dnsmasq
Commits
63ec5d12
Commit
63ec5d12
authored
Jul 30, 2015
by
Simon Kelley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix new poll() code for helper pipe. Removed CPU-spin.
parent
f6381cf4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
CHANGELOG
CHANGELOG
+6
-0
debian/changelog
debian/changelog
+6
-0
src/dnsmasq.c
src/dnsmasq.c
+1
-1
No files found.
CHANGELOG
View file @
63ec5d12
version 2.75
Fix reversion on 2.74 which caused 100% CPU use when a
dhcp-script is configured. Thanks to Adrian Davey for
reporting the bug and testing the fix.
version 2.74
version 2.74
Fix reversion in 2.73 where --conf-file would attempt to
Fix reversion in 2.73 where --conf-file would attempt to
read the default file, rather than no file.
read the default file, rather than no file.
...
...
debian/changelog
View file @
63ec5d12
dnsmasq (2.75-1) unstable; urgency=low
* New upstream. (closes: #794095)
-- Simon Kelley <simon@thekelleys.org.uk> Thur, 30 Jul 2015 20:58:31 +0000
dnsmasq (2.74-1) unstable; urgency=low
dnsmasq (2.74-1) unstable; urgency=low
* New upstream. (LP: #1468611)
* New upstream. (LP: #1468611)
...
...
src/dnsmasq.c
View file @
63ec5d12
...
@@ -1025,7 +1025,7 @@ int main (int argc, char **argv)
...
@@ -1025,7 +1025,7 @@ int main (int argc, char **argv)
#endif
#endif
# ifdef HAVE_SCRIPT
# ifdef HAVE_SCRIPT
if
(
daemon
->
helperfd
!=
-
1
&&
poll_check
(
daemon
->
helperfd
,
POLL
IN
))
if
(
daemon
->
helperfd
!=
-
1
&&
poll_check
(
daemon
->
helperfd
,
POLL
OUT
))
helper_write
();
helper_write
();
# endif
# endif
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment