mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
93c68cc46a
DRBD currently has a mix of GPL-2.0 and GPL-2.0-or-later SPDX license identifiers. We have decided to stick with GPL 2.0 only, so consistently use that identifier. Signed-off-by: Christoph Böhmwalder <christoph.boehmwalder@linbit.com> Link: https://lore.kernel.org/r/20221122134301.69258-5-christoph.boehmwalder@linbit.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
10 lines
332 B
C
10 lines
332 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef __DRBD_NLA_H
|
|
#define __DRBD_NLA_H
|
|
|
|
extern int drbd_nla_parse_nested(struct nlattr *tb[], int maxtype, struct nlattr *nla,
|
|
const struct nla_policy *policy);
|
|
extern struct nlattr *drbd_nla_find_nested(int maxtype, struct nlattr *nla, int attrtype);
|
|
|
|
#endif /* __DRBD_NLA_H */
|