#ifndef IPV6_H #define IPV6_H #include #include "built_in.h" /* * IPv6 fixed header * * BEWARE, it is incorrect. The first 4 bits of flow_lbl * are glued to priority now, forming "class". */ struct ipv6hdr { #if defined(__LITTLE_ENDIAN_BITFIELD) __extension__ uint8_t priority:4, version:4; #elif defined(__BIG_ENDIAN_BITFIELD) __extension__ uint8_t version:4, priority:4; #else # error "Please fix " #endif uint8_t flow_lbl[3]; uint16_t payload_len; uint8_t nexthdr; uint8_t hop_limit; struct in6_addr saddr; struct in6_addr daddr; } __packed; #endif /* IPV6_H */ >
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Georget <laurent.georget@supelec.fr>2016-07-13 08:58:40 +0200
committerJiri Kosina <jkosina@suse.cz>2016-09-29 10:07:01 +0200
commit1b4606511d11075a2cb61485b359555aba65fc2d (patch)
treeafbb12d02307e7c77087fdca9baafaae7e07a285 /security
parent3da7ffecb778a39c6ec895752a4918331957acd3 (diff)
securityfs: fix securityfs_create_dir comment
If there is an error creating a directory with securityfs_create_dir, the error is propagated via ERR_PTR but the function comment claims that NULL is returned. This is a similar commit to 88e6c94cda322ff2b32f72bb8d96f9675cdad8aa ("fix long-broken securityfs_create_file comment") that did not fix securityfs_create_dir comment at the same time. Signed-off-by: Laurent Georget <laurent.georget@supelec.fr> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'security')