chiark / gitweb /
Thomas Hindoe Paaboel Andersen [Thu, 17 Jul 2014 19:12:39 +0000 (21:12 +0200)]
resolved: silence warnings
No need to write to r here since it will be overwritten as the first
step in parse_fail.
Thomas Hindoe Paaboel Andersen [Thu, 17 Jul 2014 18:23:53 +0000 (20:23 +0200)]
test-pty: silence a warning
Thomas Hindoe Paaboel Andersen [Thu, 17 Jul 2014 17:59:47 +0000 (19:59 +0200)]
resolved: remove unused variable
Lennart Poettering [Thu, 17 Jul 2014 17:39:23 +0000 (19:39 +0200)]
update TODO
Lennart Poettering [Thu, 17 Jul 2014 17:38:37 +0000 (19:38 +0200)]
resolved: add DNS cache
Lennart Poettering [Thu, 17 Jul 2014 17:32:10 +0000 (19:32 +0200)]
resolved: don't trip up when an rtlink message does not include the MTU
Lennart Poettering [Thu, 17 Jul 2014 17:27:48 +0000 (19:27 +0200)]
nss-util: be a tiny bit more compatible with glibc's lookup behaviour regarding IPv6
Check for RES_USE_INET6 before we prefer IPv6 over IPv4, for all our NSS
modules. (Not that the DNS resolver that is configured with this matters
to us, but hey, let's try to be compatible).
Thomas Blume [Thu, 17 Jul 2014 09:25:37 +0000 (11:25 +0200)]
detect-virt: Fix Xen domU discovery
The conditional for detection xen virtualization contained a little mistake.
It is checking for i to be empty: 'if (!i) {', but it must check for cap instead,
because: 'cap = strsep(&i, ",")' will set cap to the discovered value and i to
the next value after the separator.
Hence, i would be empty, if there is only control_d in domcap, leading to a wrong
domU detection.
https://bugs.freedesktop.org/show_bug.cgi?id=77271
Zbigniew Jędrzejewski-Szmek [Thu, 17 Jul 2014 12:10:10 +0000 (08:10 -0400)]
networkd: fix colud typo
sztanpet> if your already there, might fixing "Colud" to Could in
53af3b7
Zbigniew Jędrzejewski-Szmek [Thu, 17 Jul 2014 12:08:11 +0000 (08:08 -0400)]
units: fix typo
vrutkovs> zbyszek:
http://cgit.freedesktop.org/systemd/systemd/diff/units/systemd-journal-upload.service.in?id=
ad95fd1d2b9c6344864857c2ba7634fd87753f8e - typo in Group name
David Herrmann [Thu, 12 Jun 2014 15:51:14 +0000 (17:51 +0200)]
ui/term: add line/cell/char handling for terminal pages
This commit introduces libsystemd-ui, a systemd-internal helper library
that will contain all the UI related functionality. It is going to be used
by systemd-welcomed, systemd-consoled, systemd-greeter and systemd-er.
Further use-cases may follow.
For now, this commit only adds terminal-page handling based on lines only.
Follow-up commits will add more functionality.
David Herrmann [Thu, 17 Jul 2014 09:48:03 +0000 (11:48 +0200)]
nspawn: fix barrier-destroy call
I dropped the cleanup-helper before pushing so use _cleanup_() directly.
David Herrmann [Fri, 11 Jul 2014 14:29:56 +0000 (16:29 +0200)]
shared: add PTY helper
This Pty API wraps the ugliness that is POSIX PTY. It takes care of:
- edge-triggered HUP handling (avoid heavy CPU-usage on vhangup)
- HUP vs. input-queue draining (handle HUP _after_ draining the whole
input queue)
- SIGCHLD vs. HUP (HUP is no reliable way to catch PTY deaths, always
use SIGCHLD. Otherwise, vhangup() and friends will break.)
- Output queue buffering (async EPOLLOUT handling)
- synchronous setup (via Barrier API)
At the same time, the PTY API does not execve(). It simply fork()s and
leaves everything else to the caller. Usually, they execve() but we
support other setups, too.
This will be needed by multiple UI binaries (systemd-console, systemd-er,
...) so it's placed in src/shared/. It's not strictly related to
libsystemd-terminal, so it's not included there.
David Herrmann [Sun, 13 Jul 2014 10:14:45 +0000 (12:14 +0200)]
nspawn: use Barrier API instead of eventfd-util
The Barrier-API simplifies cross-fork() synchronization a lot. Replace the
hard-coded eventfd-util implementation and drop it.
Compared to the old API, Barriers also handle exit() of the remote side as
abortion. This way, segfaults will not cause the parent to deadlock.
EINTR handling is currently ignored for any barrier-waits. This can easily
be added, but it isn't needed so far so I dropped it. EINTR handling in
general is ugly, anyway. You need to deal with pselect/ppoll/... variants
and make sure not to unblock signals at the wrong times. So genrally,
there's little use in adding it.
David Herrmann [Thu, 10 Jul 2014 13:25:47 +0000 (15:25 +0200)]
shared: add generic IPC barrier
The "Barrier" object is a simple inter-process barrier implementation. It
allows placing synchronization points and waiting for the other side to
reach it. Additionally, it has an abortion-mechanism as second-layer
synchronization to send abortion-events asynchronously to the other side.
The API is usually used to synchronize processes during fork(). However,
it can be extended to pass state through execve() so you could synchronize
beyond execve().
Usually, it's used like this (error-handling replaced by assert() for
simplicity):
Barrier b;
r = barrier_init(&b);
assert_se(r >= 0);
pid = fork();
assert_se(pid >= 0);
if (pid == 0) {
barrier_set_role(&b, BARRIER_CHILD);
...do child post-setup...
if (CHILD_SETUP_FAILED)
exit(1);
...child setup done...
barrier_place(&b);
if (!barrier_sync(&b)) {
/* parent setup failed */
exit(1);
}
barrier_destroy(&b); /* redundant as execve() and exit() imply this */
/* parent & child setup successful */
execve(...);
}
barrier_set_role(&b, BARRIER_PARENT);
...do parent post-setup...
if (PARENT_SETUP_FAILED) {
barrier_abort(&b); /* send abortion event */
barrier_wait_abortion(&b); /* wait for child to abort (exit() implies abortion) */
barrier_destroy(&b);
...bail out...
}
...parent setup done...
barrier_place(&b);
if (!barrier_sync(&b)) {
...child setup failed... ;
barrier_destroy(&b);
...bail out...
}
barrier_destroy(&b);
...child setup successfull...
This is the most basic API. Using barrier_place() to place barriers and
barrier_sync() to perform a full synchronization between both processes.
barrier_abort() places an abortion barrier which superceeds any other
barriers, exit() (or barrier_destroy()) places an abortion-barrier that
queues behind existing barriers (thus *not* replacing existing barriers
unlike barrier_abort()).
This example uses hard-synchronization with wait_abortion(), sync() and
friends. These are all optional. Barriers are highly dynamic and can be
used for one-way synchronization or even no synchronization at all
(postponing it for later). The sync() call performs a full two-way
synchronization.
The API is documented and should be fairly self-explanatory. A test-suite
shows some special semantics regarding abortion, wait_next() and exit().
Internally, barriers use two eventfds and a pipe. The pipe is used to
detect exit()s of the remote side as eventfds do not allow that. The
eventfds are used to place barriers, one for each side. Barriers itself
are numbered, but the numbers are reused once both sides reached the same
barrier, thus you cannot address barriers by the index. Moreover, the
numbering is implicit and we only store a counter. This makes the
implementation itself very lightweight, which is probably negligible
considering that we need 3 FDs for a barrier..
Last but not least: This barrier implementation is quite heavy. It's
definitely not meant for fast IPC synchronization. However, it's very easy
to use. And given the *HUGE* overhead of fork(), the barrier-overhead
should be negligible.
Zbigniew Jędrzejewski-Szmek [Thu, 17 Jul 2014 02:52:53 +0000 (22:52 -0400)]
core: nicer message when inotify watches are exhausted
inotify_add_watch returns ENOSPC, which translates to
"No space left on device", which is misleading.
https://bugs.freedesktop.org/show_bug.cgi?id=73628
Zbigniew Jędrzejewski-Szmek [Thu, 17 Jul 2014 02:17:29 +0000 (22:17 -0400)]
man: document yearly and annually in systemd.time(7)
https://bugs.freedesktop.org/show_bug.cgi?id=81158
Lennart Poettering [Wed, 16 Jul 2014 23:58:14 +0000 (01:58 +0200)]
resolved: enforce limit on concurrent outstanding queries
Lennart Poettering [Wed, 16 Jul 2014 23:48:40 +0000 (01:48 +0200)]
sd-login: always use "indices" as plural of "index"
So far both "indexes" and "indices" was used. Let's clean this up, and
stick to indices, since it appears to be used more frequently.
Lennart Poettering [Wed, 16 Jul 2014 23:46:21 +0000 (01:46 +0200)]
sd-network: rename "index" parameter to "ifindex"
makes things a bit clearer and avoids any clashes with libc's index()
symbol.
Lennart Poettering [Wed, 16 Jul 2014 23:41:03 +0000 (01:41 +0200)]
sd-network: if a boolean is mising, we should just take it as false
That way, we can deprecate fields later on without problems
Lennart Poettering [Wed, 16 Jul 2014 23:39:46 +0000 (01:39 +0200)]
sd-network: remove redundant array size parameter from functions that return arrays
As long as the number of array entries is relatively small it's nicer to
simply return the number of entries directly, instead of using a size_t*
return parameter for it.
Lennart Poettering [Wed, 16 Jul 2014 23:14:19 +0000 (01:14 +0200)]
resolved: fix check for mdns names
Lennart Poettering [Wed, 16 Jul 2014 23:14:07 +0000 (01:14 +0200)]
resolved: we are never authoritative for localhost
Lennart Poettering [Wed, 16 Jul 2014 23:13:22 +0000 (01:13 +0200)]
resolved: properly handle MTU logic
Lennart Poettering [Wed, 16 Jul 2014 23:10:47 +0000 (01:10 +0200)]
dns-domain: enforce maximum DNS domain name length
Lennart Poettering [Wed, 16 Jul 2014 23:07:17 +0000 (01:07 +0200)]
sd-network: fix parameter order for sd_network_monitor_new()
Constructors should return the object they created as first parameter,
except when they are generated as a child/member object of some other
object in which case that should be first.
Daniel Korostil [Wed, 16 Jul 2014 23:07:29 +0000 (02:07 +0300)]
po: add Ukrainian translation
Zbigniew Jędrzejewski-Szmek [Tue, 8 Jul 2014 13:55:15 +0000 (09:55 -0400)]
journal/verify: flush progress bar, print offset in more places
Before, fragments of the progress bar would remain when
errors or warnings were printed.
Zbigniew Jędrzejewski-Szmek [Thu, 10 Jul 2014 02:29:24 +0000 (22:29 -0400)]
test-tables: add new entries
One missing string found.
A few things had to be moved around to make it possible to test them.
Zbigniew Jędrzejewski-Szmek [Wed, 16 Jul 2014 22:37:52 +0000 (18:37 -0400)]
tty-ask-password-agent: modernization
Zbigniew Jędrzejewski-Szmek [Wed, 16 Jul 2014 22:59:49 +0000 (18:59 -0400)]
Be more careful when checking for empty files
If we want to avoid reading a totally empty file, it seems better
to check after we have opened the file, not before.
Zbigniew Jędrzejewski-Szmek [Wed, 16 Jul 2014 22:27:12 +0000 (18:27 -0400)]
Let config_parse open file where applicable
Special care is needed so that we get an error message if the
file failed to parse, but not when it is missing. To avoid duplicating
the same error check in every caller, add an additional 'warn' boolean
to tell config_parse whether a message should be issued.
This makes things both shorter and more robust wrt. to error reporting.
Kay Sievers [Wed, 16 Jul 2014 21:50:45 +0000 (23:50 +0200)]
resolved: do not free() sd_dhcp_lease_get_dns() results
Lennart Poettering [Wed, 16 Jul 2014 20:51:29 +0000 (22:51 +0200)]
update TODO
Lennart Poettering [Wed, 16 Jul 2014 20:50:41 +0000 (22:50 +0200)]
resolved: properly pass canonical name information to resolving client
Also, hook up nss-resolve to make use of this information
Lennart Poettering [Wed, 16 Jul 2014 20:09:00 +0000 (22:09 +0200)]
resolved: add CNAME lookup support
Zbigniew Jędrzejewski-Szmek [Wed, 16 Jul 2014 20:44:45 +0000 (16:44 -0400)]
missing.h: add IFLA_MACVLAN_FLAGS
Now we are getting into kernel < 3.4 territory...
https://bugs.freedesktop.org/show_bug.cgi?id=80095
Lennart Poettering [Wed, 16 Jul 2014 18:16:30 +0000 (20:16 +0200)]
update TODO
Lennart Poettering [Wed, 16 Jul 2014 18:15:47 +0000 (20:15 +0200)]
resolved: support for TCP DNS queries
Lennart Poettering [Wed, 16 Jul 2014 16:04:14 +0000 (18:04 +0200)]
dns-packet: allow dynamic resizing of DNS packets
Lennart Poettering [Wed, 16 Jul 2014 16:03:46 +0000 (18:03 +0200)]
dns-domain: introduce macros for accessing all DNS header fields
Lennart Poettering [Wed, 16 Jul 2014 15:24:43 +0000 (17:24 +0200)]
update TODO
Kay Sievers [Wed, 16 Jul 2014 13:14:46 +0000 (15:14 +0200)]
journal: add systemd-journal-remote to sysusers
Zbigniew Jędrzejewski-Szmek [Wed, 16 Jul 2014 11:52:41 +0000 (07:52 -0400)]
journal-remote: remove obsolete variable
Zbigniew Jędrzejewski-Szmek [Wed, 16 Jul 2014 11:49:21 +0000 (07:49 -0400)]
journal-remote: fix double typedef and add missing header
Sjoerd Simons [Wed, 16 Jul 2014 10:09:56 +0000 (12:09 +0200)]
shared: include stdbool.h in mkdir.h
Michael Biebl [Wed, 16 Jul 2014 10:09:47 +0000 (12:09 +0200)]
build-sys: don't move libgudev to /lib
It depends on libgobject and libgmodule which are installed in /usr/lib.
Thomas Hindoe Paaboel Andersen [Wed, 16 Jul 2014 06:59:13 +0000 (08:59 +0200)]
test-compress-benchmark: add missing % before PRIu64 format
Thomas Hindoe Paaboel Andersen [Wed, 16 Jul 2014 06:52:11 +0000 (08:52 +0200)]
test-socket-util: silence warnings
Michael Olbrich [Tue, 15 Jul 2014 16:28:10 +0000 (18:28 +0200)]
units/serial-getty@.service: use the default RestartSec
For pluggable ttys such as USB serial devices, the getty is restarted
and exits in a loop until the remove event reaches systemd. Under
certain circumstances the restart loop can overload the system in a
way that prevents the remove event from reaching systemd for a long
time (e.g. at least several minutes on a small embedded system).
Use the default RestartSec to prevent the restart loop from
overloading the system. Serial gettys are interactive units, so
waiting an extra 100ms really doesn't make a difference anyways
compared to the time it takes the user to log in.
Zbigniew Jędrzejewski-Szmek [Wed, 16 Jul 2014 02:47:03 +0000 (22:47 -0400)]
resolve: avoid use of uninitalized variable
Marc-Antoine Perennou [Wed, 16 Jul 2014 01:13:06 +0000 (10:13 +0900)]
test-compress-benchmark: silence warnings
and btw make it pass for 32bits where size_t != uint64_t
Zbigniew Jędrzejewski-Szmek [Sat, 12 Jul 2014 03:20:08 +0000 (23:20 -0400)]
journal-remote: avoid copying input data
Instead of copying fields into new memory allocations, simply keep pointers
into the receive buffer. Data in this buffer is only copied when there is not
enough space for new data and a large chunk of the buffer contains old data.
Zbigniew Jędrzejewski-Szmek [Mon, 14 Jul 2014 20:53:23 +0000 (16:53 -0400)]
Clear up confusion wrt. ENTRY_SIZE_MAX and DATA_SIZE_MAX
Define DATA_SIZE_MAX to mean the maximum size of a single
field, and ENTRY_SIZE_MAX to mean the size of the whole
entry, with some rough calculation of overhead over the payload.
Check if entries are not too big when processing native journal
messages.
Zbigniew Jędrzejewski-Szmek [Sat, 12 Jul 2014 03:17:57 +0000 (23:17 -0400)]
µhttp-util: fix compilation without gnutls
Zbigniew Jędrzejewski-Szmek [Thu, 10 Jul 2014 19:03:28 +0000 (15:03 -0400)]
man: describe new filename rules for journal-remote
Zbigniew Jędrzejewski-Szmek [Thu, 10 Jul 2014 18:50:50 +0000 (14:50 -0400)]
man: document systemd-journal-upload
Zbigniew Jędrzejewski-Szmek [Wed, 16 Jul 2014 02:22:05 +0000 (22:22 -0400)]
journal-upload: add config file
Zbigniew Jędrzejewski-Szmek [Thu, 10 Jul 2014 05:39:49 +0000 (01:39 -0400)]
journal-remote: let user specify just the main part of the url
We can append /upload ourselves.
Zbigniew Jędrzejewski-Szmek [Wed, 2 Jul 2014 04:15:37 +0000 (00:15 -0400)]
journal-remote: rework fd and writer reference handling
Zbigniew Jędrzejewski-Szmek [Wed, 2 Jul 2014 03:18:44 +0000 (23:18 -0400)]
journal-remote: improve some messages
Zbigniew Jędrzejewski-Szmek [Wed, 2 Jul 2014 03:07:45 +0000 (23:07 -0400)]
Fix problem with allocating large buffers and log leftovers
Zbigniew Jędrzejewski-Szmek [Wed, 16 Jul 2014 01:03:11 +0000 (21:03 -0400)]
Constify ConfigTableItem tables
Zbigniew Jędrzejewski-Szmek [Sun, 22 Jun 2014 17:36:31 +0000 (13:36 -0400)]
journal-remote: allow splitting incoming logs by source host
Previously existing scheme where the file name would be based on
the source was just too ugly and unpredicatable. Now there are
only two options:
1. just one file (until rotation),
2. one file per source host, using the hostname as filename part.
For the cases where the source is specified by the user, only
option one is allowed, and the full of the file must be specified.
Zbigniew Jędrzejewski-Szmek [Mon, 30 Jun 2014 05:11:32 +0000 (01:11 -0400)]
Allow addresses to be specified for --listen-... args
Hostnames still aren't accepted.
Zbigniew Jędrzejewski-Szmek [Mon, 30 Jun 2014 04:57:15 +0000 (00:57 -0400)]
Add simple generator of fake journal export stream
Zbigniew Jędrzejewski-Szmek [Mon, 30 Jun 2014 02:06:48 +0000 (22:06 -0400)]
shared/socket-label: fix error message
Was: Failed to listen on [::]:2000: Success
Zbigniew Jędrzejewski-Szmek [Sun, 29 Jun 2014 23:24:56 +0000 (19:24 -0400)]
shared/socket-util: add function to query remote address
Zbigniew Jędrzejewski-Szmek [Mon, 31 Mar 2014 03:08:02 +0000 (23:08 -0400)]
journal-remote: add units and read certs from default locations
Zbigniew Jędrzejewski-Szmek [Wed, 2 Apr 2014 00:30:13 +0000 (20:30 -0400)]
journal-upload: add watchdog support
Zbigniew Jędrzejewski-Szmek [Tue, 1 Apr 2014 13:09:35 +0000 (09:09 -0400)]
journal-upload: make state persistent
Zbigniew Jędrzejewski-Szmek [Sat, 29 Mar 2014 04:37:25 +0000 (00:37 -0400)]
journal-upload: use journal as the source
Zbigniew Jędrzejewski-Szmek [Sat, 29 Mar 2014 04:44:48 +0000 (00:44 -0400)]
journal-upload: HTTPS support
Zbigniew Jędrzejewski-Szmek [Tue, 18 Mar 2014 02:54:28 +0000 (22:54 -0400)]
journal-upload: a tool to push messages to systemd-journal-remote
Zbigniew Jędrzejewski-Szmek [Mon, 31 Mar 2014 02:35:37 +0000 (22:35 -0400)]
journal-remote: reject fields above maximum size
Also fix an infinite loop on E2BIG.
Remember what range we already scanned for '\n', to avoid
quadratic behaviour on long "text" fields.
Zbigniew Jędrzejewski-Szmek [Sun, 23 Mar 2014 16:36:05 +0000 (12:36 -0400)]
journal-remote: small fixes
Zbigniew Jędrzejewski-Szmek [Tue, 18 Mar 2014 02:52:53 +0000 (22:52 -0400)]
build-sys: add check for libcurl
Zbigniew Jędrzejewski-Szmek [Wed, 26 Mar 2014 02:30:24 +0000 (22:30 -0400)]
Move network-related journal programs to src/journal-remote/
Directory src/journal has become one of the largest directories,
and since systemd-journal-gatewayd, systemd-journal-remote, and
forthcoming systemd-journal-upload are all closely related, create
a separate directory for them.
Zbigniew Jędrzejewski-Szmek [Sat, 29 Mar 2014 15:58:11 +0000 (11:58 -0400)]
microhttp-util: rework gnutls logging
Zbigniew Jędrzejewski-Szmek [Sun, 30 Mar 2014 18:20:34 +0000 (14:20 -0400)]
journal: allow files with no data whatsoever
If a file was opened for writing, and then closed immediately without
actually writing any entries, on subsequent opening, it would be
considered "corrupted". This should be totally fine, and even in
read mode, an empty file can become non-empty later on.
Kay Sievers [Wed, 16 Jul 2014 01:48:10 +0000 (03:48 +0200)]
resolved: add busname unit file
Kay Sievers [Wed, 16 Jul 2014 01:39:09 +0000 (03:39 +0200)]
resolved: add legacy dbus service and policy files
Lennart Poettering [Wed, 16 Jul 2014 01:32:29 +0000 (03:32 +0200)]
update TODO
Lennart Poettering [Wed, 16 Jul 2014 01:31:30 +0000 (03:31 +0200)]
resolved: add small NSS module that uses resolved to resolve DNS names
Lennart Poettering [Wed, 16 Jul 2014 01:30:40 +0000 (03:30 +0200)]
nss: various minor fixes to nss-myhostname + nss-mymachines
Lennart Poettering [Wed, 16 Jul 2014 01:29:20 +0000 (03:29 +0200)]
dns-domain: never allow labels that are larger than 63 chars
Lennart Poettering [Wed, 16 Jul 2014 01:28:52 +0000 (03:28 +0200)]
dns-domain: fix generation of reverse IP address lookup name
Lennart Poettering [Wed, 16 Jul 2014 01:28:18 +0000 (03:28 +0200)]
resolve: add distinct bus error code for hosts that exist but lack A or AAAA records
Lennart Poettering [Tue, 15 Jul 2014 22:31:27 +0000 (00:31 +0200)]
update TODO
Lennart Poettering [Tue, 15 Jul 2014 22:26:02 +0000 (00:26 +0200)]
resolved: add a DNS client stub resolver
Let's turn resolved into a something truly useful: a fully asynchronous
DNS stub resolver that subscribes to network changes.
(More to come: caching, LLMNR, mDNS/DNS-SD, DNSSEC, IDN, NSS module)
Thomas Hindoe Paaboel Andersen [Tue, 15 Jul 2014 18:38:49 +0000 (20:38 +0200)]
networkd: remove unused variable
Tom Gundersen [Tue, 15 Jul 2014 17:07:35 +0000 (19:07 +0200)]
networkd: netdev - set mac for bond/bridge devicse
Suggested by poma.
Tom Gundersen [Tue, 15 Jul 2014 16:55:31 +0000 (18:55 +0200)]
sd-dhcp-client: make request broadcasts opt-in
It appears there is no good way to decide whether or not broadcasts should be enabled,
there is hardware that must have broadcast, and there are networks that only allow
unicast. So we give up and make this configurable.
By default, unicast is used, but if the kernel were to inform us abotu certain
interfaces requiring broadcast, we could change this to opt-in by default in
those cases.
Kay Sievers [Tue, 15 Jul 2014 15:35:53 +0000 (17:35 +0200)]
rules: uaccess - add ID_SOFTWARE_RADIO
On Tue, Jul 15, 2014 at 1:52 PM, Alick Zhao <alick9188@gmail.com> wrote:
>>>
>>> So maybe ID_SOFTWARE_RADIO ?
>>
>> Hmm, SDR is more a term for a generic technology than for a device
>> class. To me it does not really sound like an administrator would know
>> what this is.
>>
>> What exactly is the device or subsystem you want to make accessible to
>> locally logged-in users only?
>
> Initially it is bladeRF, but many more are of interest: USRP, rtl-sdr,
> HackRF, ... [1]
>
> I agree an administrator might not know what SDR is, since it is
> currently still not widely known, and makes sense only for amateurs
> and researchers. But as a SDR fan, I see many new SDR peripherals
> are created recently, and expect to see more. So a generic ID seems
> reasonable to me.
>
> [1] http://en.wikipedia.org/wiki/List_of_software-defined_radios
Umut Tezduyar Lindskog [Tue, 15 Jul 2014 06:36:29 +0000 (08:36 +0200)]
core: fix oneshot service resource control
Oneshot services's cgroup is removed when the service
exits. An assert is hit otherwise.
Zbigniew Jędrzejewski-Szmek [Mon, 14 Jul 2014 23:24:46 +0000 (19:24 -0400)]
shell-completion: restore completion for -p
It was broken since systemd was moved out of /bin.
For zsh it was never there.
Zbigniew Jędrzejewski-Szmek [Mon, 14 Jul 2014 22:29:27 +0000 (18:29 -0400)]
timesyncd: add sockaddr_pretty wrapper
Zbigniew Jędrzejewski-Szmek [Tue, 15 Jul 2014 13:52:17 +0000 (09:52 -0400)]
timesyncd: only listen to clock changes when connected
This reverts previous commit and applies a different fix.
manager_clock_watch() callback calls manager_send_request() to kick
off a resync. We can only do that when we're actually connected to
something. It is not useful to setup the callback from manager_new().
Now the callback will be dropped in manager_connect() and requested
in manager_begin().
https://bugs.freedesktop.org/show_bug.cgi?id=80932
Kay Sievers [Tue, 15 Jul 2014 00:24:35 +0000 (02:24 +0200)]
timesyncd: suppress resync at system time change when not connected
Jul 04 17:46:03 orchid systemd[1]: Starting Network Time Synchronization...
Jul 04 17:46:03 orchid systemd[1]: Started Network Time Synchronization.
Jul 04 17:46:22 orchid systemd-timesyncd[301]: System time changed. Resyncing.
Jul 04 17:46:22 orchid systemd-timesyncd[301]: Assertion 'm->current_server_name'
https://bugs.freedesktop.org/show_bug.cgi?id=80932