misc.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /*
  2. * This file is part of UBIFS.
  3. *
  4. * Copyright (C) 2006-2008 Nokia Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published by
  8. * the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc., 51
  17. * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. *
  19. * Authors: Artem Bityutskiy (Битюцкий Артём)
  20. * Adrian Hunter
  21. */
  22. /*
  23. * This file contains miscellaneous helper functions.
  24. */
  25. #ifndef __UBIFS_MISC_H__
  26. #define __UBIFS_MISC_H__
  27. /**
  28. * ubifs_zn_dirty - check if znode is dirty.
  29. * @znode: znode to check
  30. *
  31. * This helper function returns %1 if @znode is dirty and %0 otherwise.
  32. */
  33. static inline int ubifs_zn_dirty(const struct ubifs_znode *znode)
  34. {
  35. return !!test_bit(DIRTY_ZNODE, &znode->flags);
  36. }
  37. /**
  38. * ubifs_zn_obsolete - check if znode is obsolete.
  39. * @znode: znode to check
  40. *
  41. * This helper function returns %1 if @znode is obsolete and %0 otherwise.
  42. */
  43. static inline int ubifs_zn_obsolete(const struct ubifs_znode *znode)
  44. {
  45. return !!test_bit(OBSOLETE_ZNODE, &znode->flags);
  46. }
  47. /**
  48. * ubifs_zn_cow - check if znode has to be copied on write.
  49. * @znode: znode to check
  50. *
  51. * This helper function returns %1 if @znode is has COW flag set and %0
  52. * otherwise.
  53. */
  54. static inline int ubifs_zn_cow(const struct ubifs_znode *znode)
  55. {
  56. return !!test_bit(COW_ZNODE, &znode->flags);
  57. }
  58. /**
  59. * ubifs_wake_up_bgt - wake up background thread.
  60. * @c: UBIFS file-system description object
  61. */
  62. static inline void ubifs_wake_up_bgt(struct ubifs_info *c)
  63. {
  64. if (c->bgt && !c->need_bgt) {
  65. c->need_bgt = 1;
  66. wake_up_process(c->bgt);
  67. }
  68. }
  69. /**
  70. * ubifs_tnc_find_child - find next child in znode.
  71. * @znode: znode to search at
  72. * @start: the zbranch index to start at
  73. *
  74. * This helper function looks for znode child starting at index @start. Returns
  75. * the child or %NULL if no children were found.
  76. */
  77. static inline struct ubifs_znode *
  78. ubifs_tnc_find_child(struct ubifs_znode *znode, int start)
  79. {
  80. while (start < znode->child_cnt) {
  81. if (znode->zbranch[start].znode)
  82. return znode->zbranch[start].znode;
  83. start += 1;
  84. }
  85. return NULL;
  86. }
  87. /**
  88. * ubifs_inode - get UBIFS inode information by VFS 'struct inode' object.
  89. * @inode: the VFS 'struct inode' pointer
  90. */
  91. static inline struct ubifs_inode *ubifs_inode(const struct inode *inode)
  92. {
  93. return container_of(inode, struct ubifs_inode, vfs_inode);
  94. }
  95. /**
  96. * ubifs_compr_present - check if compressor was compiled in.
  97. * @compr_type: compressor type to check
  98. *
  99. * This function returns %1 of compressor of type @compr_type is present, and
  100. * %0 if not.
  101. */
  102. static inline int ubifs_compr_present(int compr_type)
  103. {
  104. ubifs_assert(compr_type >= 0 && compr_type < UBIFS_COMPR_TYPES_CNT);
  105. return !!ubifs_compressors[compr_type]->capi_name;
  106. }
  107. /**
  108. * ubifs_compr_name - get compressor name string by its type.
  109. * @compr_type: compressor type
  110. *
  111. * This function returns compressor type string.
  112. */
  113. static inline const char *ubifs_compr_name(int compr_type)
  114. {
  115. ubifs_assert(compr_type >= 0 && compr_type < UBIFS_COMPR_TYPES_CNT);
  116. return ubifs_compressors[compr_type]->name;
  117. }
  118. /**
  119. * ubifs_wbuf_sync - synchronize write-buffer.
  120. * @wbuf: write-buffer to synchronize
  121. *
  122. * This is the same as as 'ubifs_wbuf_sync_nolock()' but it does not assume
  123. * that the write-buffer is already locked.
  124. */
  125. static inline int ubifs_wbuf_sync(struct ubifs_wbuf *wbuf)
  126. {
  127. int err;
  128. mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
  129. err = ubifs_wbuf_sync_nolock(wbuf);
  130. mutex_unlock(&wbuf->io_mutex);
  131. return err;
  132. }
  133. /**
  134. * ubifs_encode_dev - encode device node IDs.
  135. * @dev: UBIFS device node information
  136. * @rdev: device IDs to encode
  137. *
  138. * This is a helper function which encodes major/minor numbers of a device node
  139. * into UBIFS device node description. We use standard Linux "new" and "huge"
  140. * encodings.
  141. */
  142. static inline int ubifs_encode_dev(union ubifs_dev_desc *dev, dev_t rdev)
  143. {
  144. dev->new = cpu_to_le32(new_encode_dev(rdev));
  145. return sizeof(dev->new);
  146. }
  147. /**
  148. * ubifs_add_dirt - add dirty space to LEB properties.
  149. * @c: the UBIFS file-system description object
  150. * @lnum: LEB to add dirty space for
  151. * @dirty: dirty space to add
  152. *
  153. * This is a helper function which increased amount of dirty LEB space. Returns
  154. * zero in case of success and a negative error code in case of failure.
  155. */
  156. static inline int ubifs_add_dirt(struct ubifs_info *c, int lnum, int dirty)
  157. {
  158. return ubifs_update_one_lp(c, lnum, LPROPS_NC, dirty, 0, 0);
  159. }
  160. /**
  161. * ubifs_return_leb - return LEB to lprops.
  162. * @c: the UBIFS file-system description object
  163. * @lnum: LEB to return
  164. *
  165. * This helper function cleans the "taken" flag of a logical eraseblock in the
  166. * lprops. Returns zero in case of success and a negative error code in case of
  167. * failure.
  168. */
  169. static inline int ubifs_return_leb(struct ubifs_info *c, int lnum)
  170. {
  171. return ubifs_change_one_lp(c, lnum, LPROPS_NC, LPROPS_NC, 0,
  172. LPROPS_TAKEN, 0);
  173. }
  174. /**
  175. * ubifs_idx_node_sz - return index node size.
  176. * @c: the UBIFS file-system description object
  177. * @child_cnt: number of children of this index node
  178. */
  179. static inline int ubifs_idx_node_sz(const struct ubifs_info *c, int child_cnt)
  180. {
  181. return UBIFS_IDX_NODE_SZ + (UBIFS_BRANCH_SZ + c->key_len) * child_cnt;
  182. }
  183. /**
  184. * ubifs_idx_branch - return pointer to an index branch.
  185. * @c: the UBIFS file-system description object
  186. * @idx: index node
  187. * @bnum: branch number
  188. */
  189. static inline
  190. struct ubifs_branch *ubifs_idx_branch(const struct ubifs_info *c,
  191. const struct ubifs_idx_node *idx,
  192. int bnum)
  193. {
  194. return (struct ubifs_branch *)((void *)idx->branches +
  195. (UBIFS_BRANCH_SZ + c->key_len) * bnum);
  196. }
  197. /**
  198. * ubifs_idx_key - return pointer to an index key.
  199. * @c: the UBIFS file-system description object
  200. * @idx: index node
  201. */
  202. static inline void *ubifs_idx_key(const struct ubifs_info *c,
  203. const struct ubifs_idx_node *idx)
  204. {
  205. return (void *)((struct ubifs_branch *)idx->branches)->key;
  206. }
  207. /**
  208. * ubifs_current_time - round current time to time granularity.
  209. * @inode: inode
  210. */
  211. static inline struct timespec ubifs_current_time(struct inode *inode)
  212. {
  213. return (inode->i_sb->s_time_gran < NSEC_PER_SEC) ?
  214. current_fs_time(inode->i_sb) : CURRENT_TIME_SEC;
  215. }
  216. /**
  217. * ubifs_tnc_lookup - look up a file-system node.
  218. * @c: UBIFS file-system description object
  219. * @key: node key to lookup
  220. * @node: the node is returned here
  221. *
  222. * This function look up and reads node with key @key. The caller has to make
  223. * sure the @node buffer is large enough to fit the node. Returns zero in case
  224. * of success, %-ENOENT if the node was not found, and a negative error code in
  225. * case of failure.
  226. */
  227. static inline int ubifs_tnc_lookup(struct ubifs_info *c,
  228. const union ubifs_key *key, void *node)
  229. {
  230. return ubifs_tnc_locate(c, key, node, NULL, NULL);
  231. }
  232. /**
  233. * ubifs_get_lprops - get reference to LEB properties.
  234. * @c: the UBIFS file-system description object
  235. *
  236. * This function locks lprops. Lprops have to be unlocked by
  237. * 'ubifs_release_lprops()'.
  238. */
  239. static inline void ubifs_get_lprops(struct ubifs_info *c)
  240. {
  241. mutex_lock(&c->lp_mutex);
  242. }
  243. /**
  244. * ubifs_release_lprops - release lprops lock.
  245. * @c: the UBIFS file-system description object
  246. *
  247. * This function has to be called after each 'ubifs_get_lprops()' call to
  248. * unlock lprops.
  249. */
  250. static inline void ubifs_release_lprops(struct ubifs_info *c)
  251. {
  252. ubifs_assert(mutex_is_locked(&c->lp_mutex));
  253. ubifs_assert(c->lst.empty_lebs >= 0 &&
  254. c->lst.empty_lebs <= c->main_lebs);
  255. mutex_unlock(&c->lp_mutex);
  256. }
  257. /**
  258. * ubifs_next_log_lnum - switch to the next log LEB.
  259. * @c: UBIFS file-system description object
  260. * @lnum: current log LEB
  261. *
  262. * This helper function returns the log LEB number which goes next after LEB
  263. * 'lnum'.
  264. */
  265. static inline int ubifs_next_log_lnum(const struct ubifs_info *c, int lnum)
  266. {
  267. lnum += 1;
  268. if (lnum > c->log_last)
  269. lnum = UBIFS_LOG_LNUM;
  270. return lnum;
  271. }
  272. #endif /* __UBIFS_MISC_H__ */