diff options
Diffstat (limited to 'fs/ceph/decode.h')
-rw-r--r-- | fs/ceph/decode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ceph/decode.h b/fs/ceph/decode.h index 10de84896244..b90a33b948c7 100644 --- a/fs/ceph/decode.h +++ b/fs/ceph/decode.h | |||
@@ -138,6 +138,7 @@ static inline void ceph_encode_filepath(void **p, void *end, | |||
138 | { | 138 | { |
139 | u32 len = path ? strlen(path) : 0; | 139 | u32 len = path ? strlen(path) : 0; |
140 | BUG_ON(*p + sizeof(ino) + sizeof(len) + len > end); | 140 | BUG_ON(*p + sizeof(ino) + sizeof(len) + len > end); |
141 | ceph_encode_8(p, 1); | ||
141 | ceph_encode_64(p, ino); | 142 | ceph_encode_64(p, ino); |
142 | ceph_encode_32(p, len); | 143 | ceph_encode_32(p, len); |
143 | if (len) | 144 | if (len) |