diff options
author | Michael Biebl <mbiebl@gmail.com> | 2017-03-02 19:11:37 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-03-02 19:11:37 +0100 |
commit | dcce98a4bdc302a5efeb3a5c35b6cbf6d16a3efc (patch) | |
tree | fc658fb96fd2776b824b007a35d0fac5ab4dbc6f /Makefile.am | |
parent | 09c11024969fbf562f2b4c153aa41aa383f9931a (diff) | |
download | systemd-dcce98a4bdc302a5efeb3a5c35b6cbf6d16a3efc.tar.gz |
Avoid strict DM interface version dependencies (#5519)
Compiling against the dm-ioctl.h header as provided by the Linux kernel
will embed the DM interface version number. Running an older kernel can
result in an error like this on shutdown:
Could not detach DM dm-11: ioctl mismatch, kernel(4.34.4), user(4.35.4)
Work around this by shipping a local copy of dm-ioctl.h. We need at
least the version from 3.13 for DM_DEFERRED_REMOVE [1], so bump the
requirements in README accordingly.
[1] https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=2c140a246dc0bc085b98eddde978060fcec1080c
Fixes: #5492
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 7ee6c594ca..d4e940c9cf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1018,6 +1018,7 @@ libshared_la_SOURCES = \ src/shared/gpt.h \ src/shared/udev-util.h \ src/shared/linux/auto_dev-ioctl.h \ + src/shared/linux-3.13/dm-ioctl.h \ src/shared/initreq.h \ src/shared/dns-domain.c \ src/shared/dns-domain.h \ |