mirror of
https://github.com/systemd/systemd
synced 2025-09-28 16:24:45 +02:00
Compare commits
2 Commits
22ede2c1dc
...
aac6673f02
Author | SHA1 | Date | |
---|---|---|---|
![]() |
aac6673f02 | ||
![]() |
0da7f9e589 |
@ -559,6 +559,15 @@ evdev:name:MSFT0001:02 04F3:304B Touchpad:dmi:*svnLENOVO:*pvrLenovoLegionY9000X2
|
||||
EVDEV_ABS_35=::31
|
||||
EVDEV_ABS_36=::30
|
||||
|
||||
#########################################
|
||||
# NEWYES
|
||||
#########################################
|
||||
|
||||
# NEWYES 10" LCD writing tablet
|
||||
evdev:input:b0003v6161p4D15*
|
||||
EVDEV_ABS_00=::152
|
||||
EVDEV_ABS_01=::244
|
||||
|
||||
#########################################
|
||||
# Razer
|
||||
#########################################
|
||||
|
@ -107,6 +107,15 @@ static bool address_pool_prefix_is_taken(
|
||||
return true;
|
||||
}
|
||||
|
||||
/* Don't clash with assigned foreign addresses */
|
||||
SET_FOREACH(a, l->addresses_foreign) {
|
||||
if (a->family != p->family)
|
||||
continue;
|
||||
|
||||
if (in_addr_prefix_intersect(p->family, u, prefixlen, &a->in_addr, a->prefixlen))
|
||||
return true;
|
||||
}
|
||||
|
||||
/* Don't clash with addresses already pulled from the pool, but not assigned yet */
|
||||
SET_FOREACH(a, l->pool_addresses) {
|
||||
if (a->family != p->family)
|
||||
|
Loading…
x
Reference in New Issue
Block a user