2 * cpfile.c - NILFS checkpoint file.
4 * Copyright (C) 2006-2008 Nippon Telegraph and Telephone Corporation.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <linux/kernel.h>
25 #include <linux/string.h>
26 #include <linux/buffer_head.h>
27 #include <linux/errno.h>
28 #include <linux/nilfs2_fs.h>
33 static inline unsigned long
34 nilfs_cpfile_checkpoints_per_block(const struct inode *cpfile)
36 return NILFS_MDT(cpfile)->mi_entries_per_block;
39 /* block number from the beginning of the file */
41 nilfs_cpfile_get_blkoff(const struct inode *cpfile, __u64 cno)
43 __u64 tcno = cno + NILFS_MDT(cpfile)->mi_first_entry_offset - 1;
44 do_div(tcno, nilfs_cpfile_checkpoints_per_block(cpfile));
45 return (unsigned long)tcno;
50 nilfs_cpfile_get_offset(const struct inode *cpfile, __u64 cno)
52 __u64 tcno = cno + NILFS_MDT(cpfile)->mi_first_entry_offset - 1;
53 return do_div(tcno, nilfs_cpfile_checkpoints_per_block(cpfile));
57 nilfs_cpfile_checkpoints_in_block(const struct inode *cpfile,
62 nilfs_cpfile_checkpoints_per_block(cpfile) -
63 nilfs_cpfile_get_offset(cpfile, curr),
67 static inline int nilfs_cpfile_is_in_first(const struct inode *cpfile,
70 return nilfs_cpfile_get_blkoff(cpfile, cno) == 0;
74 nilfs_cpfile_block_add_valid_checkpoints(const struct inode *cpfile,
75 struct buffer_head *bh,
79 struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
82 count = le32_to_cpu(cp->cp_checkpoints_count) + n;
83 cp->cp_checkpoints_count = cpu_to_le32(count);
88 nilfs_cpfile_block_sub_valid_checkpoints(const struct inode *cpfile,
89 struct buffer_head *bh,
93 struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
96 WARN_ON(le32_to_cpu(cp->cp_checkpoints_count) < n);
97 count = le32_to_cpu(cp->cp_checkpoints_count) - n;
98 cp->cp_checkpoints_count = cpu_to_le32(count);
102 static inline struct nilfs_cpfile_header *
103 nilfs_cpfile_block_get_header(const struct inode *cpfile,
104 struct buffer_head *bh,
107 return kaddr + bh_offset(bh);
110 static struct nilfs_checkpoint *
111 nilfs_cpfile_block_get_checkpoint(const struct inode *cpfile, __u64 cno,
112 struct buffer_head *bh,
115 return kaddr + bh_offset(bh) + nilfs_cpfile_get_offset(cpfile, cno) *
116 NILFS_MDT(cpfile)->mi_entry_size;
119 static void nilfs_cpfile_block_init(struct inode *cpfile,
120 struct buffer_head *bh,
123 struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
124 size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
125 int n = nilfs_cpfile_checkpoints_per_block(cpfile);
128 nilfs_checkpoint_set_invalid(cp);
129 cp = (void *)cp + cpsz;
133 static inline int nilfs_cpfile_get_header_block(struct inode *cpfile,
134 struct buffer_head **bhp)
136 return nilfs_mdt_get_block(cpfile, 0, 0, NULL, bhp);
139 static inline int nilfs_cpfile_get_checkpoint_block(struct inode *cpfile,
142 struct buffer_head **bhp)
144 return nilfs_mdt_get_block(cpfile,
145 nilfs_cpfile_get_blkoff(cpfile, cno),
146 create, nilfs_cpfile_block_init, bhp);
149 static inline int nilfs_cpfile_delete_checkpoint_block(struct inode *cpfile,
152 return nilfs_mdt_delete_block(cpfile,
153 nilfs_cpfile_get_blkoff(cpfile, cno));
157 * nilfs_cpfile_get_checkpoint - get a checkpoint
158 * @cpfile: inode of checkpoint file
159 * @cno: checkpoint number
160 * @create: create flag
161 * @cpp: pointer to a checkpoint
162 * @bhp: pointer to a buffer head
164 * Description: nilfs_cpfile_get_checkpoint() acquires the checkpoint
165 * specified by @cno. A new checkpoint will be created if @cno is the current
166 * checkpoint number and @create is nonzero.
168 * Return Value: On success, 0 is returned, and the checkpoint and the
169 * buffer head of the buffer on which the checkpoint is located are stored in
170 * the place pointed by @cpp and @bhp, respectively. On error, one of the
171 * following negative error codes is returned.
175 * %-ENOMEM - Insufficient amount of memory available.
177 * %-ENOENT - No such checkpoint.
179 * %-EINVAL - invalid checkpoint.
181 int nilfs_cpfile_get_checkpoint(struct inode *cpfile,
184 struct nilfs_checkpoint **cpp,
185 struct buffer_head **bhp)
187 struct buffer_head *header_bh, *cp_bh;
188 struct nilfs_cpfile_header *header;
189 struct nilfs_checkpoint *cp;
193 if (unlikely(cno < 1 || cno > nilfs_mdt_cno(cpfile) ||
194 (cno < nilfs_mdt_cno(cpfile) && create)))
197 down_write(&NILFS_MDT(cpfile)->mi_sem);
199 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
202 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, create, &cp_bh);
205 kaddr = kmap(cp_bh->b_page);
206 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
207 if (nilfs_checkpoint_invalid(cp)) {
209 kunmap(cp_bh->b_page);
214 /* a newly-created checkpoint */
215 nilfs_checkpoint_clear_invalid(cp);
216 if (!nilfs_cpfile_is_in_first(cpfile, cno))
217 nilfs_cpfile_block_add_valid_checkpoints(cpfile, cp_bh,
219 mark_buffer_dirty(cp_bh);
221 kaddr = kmap_atomic(header_bh->b_page);
222 header = nilfs_cpfile_block_get_header(cpfile, header_bh,
224 le64_add_cpu(&header->ch_ncheckpoints, 1);
225 kunmap_atomic(kaddr);
226 mark_buffer_dirty(header_bh);
227 nilfs_mdt_mark_dirty(cpfile);
238 up_write(&NILFS_MDT(cpfile)->mi_sem);
243 * nilfs_cpfile_put_checkpoint - put a checkpoint
244 * @cpfile: inode of checkpoint file
245 * @cno: checkpoint number
248 * Description: nilfs_cpfile_put_checkpoint() releases the checkpoint
249 * specified by @cno. @bh must be the buffer head which has been returned by
250 * a previous call to nilfs_cpfile_get_checkpoint() with @cno.
252 void nilfs_cpfile_put_checkpoint(struct inode *cpfile, __u64 cno,
253 struct buffer_head *bh)
260 * nilfs_cpfile_delete_checkpoints - delete checkpoints
261 * @cpfile: inode of checkpoint file
262 * @start: start checkpoint number
263 * @end: end checkpoint numer
265 * Description: nilfs_cpfile_delete_checkpoints() deletes the checkpoints in
266 * the period from @start to @end, excluding @end itself. The checkpoints
267 * which have been already deleted are ignored.
269 * Return Value: On success, 0 is returned. On error, one of the following
270 * negative error codes is returned.
274 * %-ENOMEM - Insufficient amount of memory available.
276 * %-EINVAL - invalid checkpoints.
278 int nilfs_cpfile_delete_checkpoints(struct inode *cpfile,
282 struct buffer_head *header_bh, *cp_bh;
283 struct nilfs_cpfile_header *header;
284 struct nilfs_checkpoint *cp;
285 size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
288 unsigned long tnicps;
289 int ret, ncps, nicps, nss, count, i;
291 if (unlikely(start == 0 || start > end)) {
292 printk(KERN_ERR "%s: invalid range of checkpoint numbers: "
293 "[%llu, %llu)\n", __func__,
294 (unsigned long long)start, (unsigned long long)end);
298 down_write(&NILFS_MDT(cpfile)->mi_sem);
300 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
306 for (cno = start; cno < end; cno += ncps) {
307 ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, end);
308 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
317 kaddr = kmap_atomic(cp_bh->b_page);
318 cp = nilfs_cpfile_block_get_checkpoint(
319 cpfile, cno, cp_bh, kaddr);
321 for (i = 0; i < ncps; i++, cp = (void *)cp + cpsz) {
322 if (nilfs_checkpoint_snapshot(cp)) {
324 } else if (!nilfs_checkpoint_invalid(cp)) {
325 nilfs_checkpoint_set_invalid(cp);
331 mark_buffer_dirty(cp_bh);
332 nilfs_mdt_mark_dirty(cpfile);
333 if (!nilfs_cpfile_is_in_first(cpfile, cno)) {
335 nilfs_cpfile_block_sub_valid_checkpoints(
336 cpfile, cp_bh, kaddr, nicps);
339 kunmap_atomic(kaddr);
342 nilfs_cpfile_delete_checkpoint_block(
347 "%s: cannot delete block\n",
354 kunmap_atomic(kaddr);
359 kaddr = kmap_atomic(header_bh->b_page);
360 header = nilfs_cpfile_block_get_header(cpfile, header_bh,
362 le64_add_cpu(&header->ch_ncheckpoints, -(u64)tnicps);
363 mark_buffer_dirty(header_bh);
364 nilfs_mdt_mark_dirty(cpfile);
365 kunmap_atomic(kaddr);
373 up_write(&NILFS_MDT(cpfile)->mi_sem);
377 static void nilfs_cpfile_checkpoint_to_cpinfo(struct inode *cpfile,
378 struct nilfs_checkpoint *cp,
379 struct nilfs_cpinfo *ci)
381 ci->ci_flags = le32_to_cpu(cp->cp_flags);
382 ci->ci_cno = le64_to_cpu(cp->cp_cno);
383 ci->ci_create = le64_to_cpu(cp->cp_create);
384 ci->ci_nblk_inc = le64_to_cpu(cp->cp_nblk_inc);
385 ci->ci_inodes_count = le64_to_cpu(cp->cp_inodes_count);
386 ci->ci_blocks_count = le64_to_cpu(cp->cp_blocks_count);
387 ci->ci_next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
390 static ssize_t nilfs_cpfile_do_get_cpinfo(struct inode *cpfile, __u64 *cnop,
391 void *buf, unsigned cisz, size_t nci)
393 struct nilfs_checkpoint *cp;
394 struct nilfs_cpinfo *ci = buf;
395 struct buffer_head *bh;
396 size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
397 __u64 cur_cno = nilfs_mdt_cno(cpfile), cno = *cnop;
403 return -ENOENT; /* checkpoint number 0 is invalid */
404 down_read(&NILFS_MDT(cpfile)->mi_sem);
406 for (n = 0; cno < cur_cno && n < nci; cno += ncps) {
407 ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, cur_cno);
408 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &bh);
412 continue; /* skip hole */
415 kaddr = kmap_atomic(bh->b_page);
416 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
417 for (i = 0; i < ncps && n < nci; i++, cp = (void *)cp + cpsz) {
418 if (!nilfs_checkpoint_invalid(cp)) {
419 nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp,
421 ci = (void *)ci + cisz;
425 kunmap_atomic(kaddr);
431 ci = (void *)ci - cisz;
432 *cnop = ci->ci_cno + 1;
436 up_read(&NILFS_MDT(cpfile)->mi_sem);
440 static ssize_t nilfs_cpfile_do_get_ssinfo(struct inode *cpfile, __u64 *cnop,
441 void *buf, unsigned cisz, size_t nci)
443 struct buffer_head *bh;
444 struct nilfs_cpfile_header *header;
445 struct nilfs_checkpoint *cp;
446 struct nilfs_cpinfo *ci = buf;
447 __u64 curr = *cnop, next;
448 unsigned long curr_blkoff, next_blkoff;
452 down_read(&NILFS_MDT(cpfile)->mi_sem);
455 ret = nilfs_cpfile_get_header_block(cpfile, &bh);
458 kaddr = kmap_atomic(bh->b_page);
459 header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
460 curr = le64_to_cpu(header->ch_snapshot_list.ssl_next);
461 kunmap_atomic(kaddr);
467 } else if (unlikely(curr == ~(__u64)0)) {
472 curr_blkoff = nilfs_cpfile_get_blkoff(cpfile, curr);
473 ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr, 0, &bh);
474 if (unlikely(ret < 0)) {
476 ret = 0; /* No snapshots (started from a hole block) */
479 kaddr = kmap_atomic(bh->b_page);
481 cp = nilfs_cpfile_block_get_checkpoint(cpfile, curr, bh, kaddr);
482 curr = ~(__u64)0; /* Terminator */
483 if (unlikely(nilfs_checkpoint_invalid(cp) ||
484 !nilfs_checkpoint_snapshot(cp)))
486 nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp, ci);
487 ci = (void *)ci + cisz;
489 next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
491 break; /* reach end of the snapshot list */
493 next_blkoff = nilfs_cpfile_get_blkoff(cpfile, next);
494 if (curr_blkoff != next_blkoff) {
495 kunmap_atomic(kaddr);
497 ret = nilfs_cpfile_get_checkpoint_block(cpfile, next,
499 if (unlikely(ret < 0)) {
500 WARN_ON(ret == -ENOENT);
503 kaddr = kmap_atomic(bh->b_page);
506 curr_blkoff = next_blkoff;
508 kunmap_atomic(kaddr);
514 up_read(&NILFS_MDT(cpfile)->mi_sem);
519 * nilfs_cpfile_get_cpinfo -
526 ssize_t nilfs_cpfile_get_cpinfo(struct inode *cpfile, __u64 *cnop, int mode,
527 void *buf, unsigned cisz, size_t nci)
530 case NILFS_CHECKPOINT:
531 return nilfs_cpfile_do_get_cpinfo(cpfile, cnop, buf, cisz, nci);
533 return nilfs_cpfile_do_get_ssinfo(cpfile, cnop, buf, cisz, nci);
540 * nilfs_cpfile_delete_checkpoint -
544 int nilfs_cpfile_delete_checkpoint(struct inode *cpfile, __u64 cno)
546 struct nilfs_cpinfo ci;
550 nci = nilfs_cpfile_do_get_cpinfo(cpfile, &tcno, &ci, sizeof(ci), 1);
553 else if (nci == 0 || ci.ci_cno != cno)
555 else if (nilfs_cpinfo_snapshot(&ci))
558 return nilfs_cpfile_delete_checkpoints(cpfile, cno, cno + 1);
561 static struct nilfs_snapshot_list *
562 nilfs_cpfile_block_get_snapshot_list(const struct inode *cpfile,
564 struct buffer_head *bh,
567 struct nilfs_cpfile_header *header;
568 struct nilfs_checkpoint *cp;
569 struct nilfs_snapshot_list *list;
572 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
573 list = &cp->cp_snapshot_list;
575 header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
576 list = &header->ch_snapshot_list;
581 static int nilfs_cpfile_set_snapshot(struct inode *cpfile, __u64 cno)
583 struct buffer_head *header_bh, *curr_bh, *prev_bh, *cp_bh;
584 struct nilfs_cpfile_header *header;
585 struct nilfs_checkpoint *cp;
586 struct nilfs_snapshot_list *list;
588 unsigned long curr_blkoff, prev_blkoff;
593 return -ENOENT; /* checkpoint number 0 is invalid */
594 down_write(&NILFS_MDT(cpfile)->mi_sem);
596 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
599 kaddr = kmap_atomic(cp_bh->b_page);
600 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
601 if (nilfs_checkpoint_invalid(cp)) {
603 kunmap_atomic(kaddr);
606 if (nilfs_checkpoint_snapshot(cp)) {
608 kunmap_atomic(kaddr);
611 kunmap_atomic(kaddr);
613 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
616 kaddr = kmap_atomic(header_bh->b_page);
617 header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
618 list = &header->ch_snapshot_list;
623 prev = le64_to_cpu(list->ssl_prev);
625 prev_blkoff = nilfs_cpfile_get_blkoff(cpfile, prev);
627 if (curr_blkoff != prev_blkoff) {
628 kunmap_atomic(kaddr);
630 ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr,
634 kaddr = kmap_atomic(curr_bh->b_page);
636 curr_blkoff = prev_blkoff;
637 cp = nilfs_cpfile_block_get_checkpoint(
638 cpfile, curr, curr_bh, kaddr);
639 list = &cp->cp_snapshot_list;
640 prev = le64_to_cpu(list->ssl_prev);
642 kunmap_atomic(kaddr);
645 ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
654 kaddr = kmap_atomic(curr_bh->b_page);
655 list = nilfs_cpfile_block_get_snapshot_list(
656 cpfile, curr, curr_bh, kaddr);
657 list->ssl_prev = cpu_to_le64(cno);
658 kunmap_atomic(kaddr);
660 kaddr = kmap_atomic(cp_bh->b_page);
661 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
662 cp->cp_snapshot_list.ssl_next = cpu_to_le64(curr);
663 cp->cp_snapshot_list.ssl_prev = cpu_to_le64(prev);
664 nilfs_checkpoint_set_snapshot(cp);
665 kunmap_atomic(kaddr);
667 kaddr = kmap_atomic(prev_bh->b_page);
668 list = nilfs_cpfile_block_get_snapshot_list(
669 cpfile, prev, prev_bh, kaddr);
670 list->ssl_next = cpu_to_le64(cno);
671 kunmap_atomic(kaddr);
673 kaddr = kmap_atomic(header_bh->b_page);
674 header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
675 le64_add_cpu(&header->ch_nsnapshots, 1);
676 kunmap_atomic(kaddr);
678 mark_buffer_dirty(prev_bh);
679 mark_buffer_dirty(curr_bh);
680 mark_buffer_dirty(cp_bh);
681 mark_buffer_dirty(header_bh);
682 nilfs_mdt_mark_dirty(cpfile);
696 up_write(&NILFS_MDT(cpfile)->mi_sem);
700 static int nilfs_cpfile_clear_snapshot(struct inode *cpfile, __u64 cno)
702 struct buffer_head *header_bh, *next_bh, *prev_bh, *cp_bh;
703 struct nilfs_cpfile_header *header;
704 struct nilfs_checkpoint *cp;
705 struct nilfs_snapshot_list *list;
711 return -ENOENT; /* checkpoint number 0 is invalid */
712 down_write(&NILFS_MDT(cpfile)->mi_sem);
714 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
717 kaddr = kmap_atomic(cp_bh->b_page);
718 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
719 if (nilfs_checkpoint_invalid(cp)) {
721 kunmap_atomic(kaddr);
724 if (!nilfs_checkpoint_snapshot(cp)) {
726 kunmap_atomic(kaddr);
730 list = &cp->cp_snapshot_list;
731 next = le64_to_cpu(list->ssl_next);
732 prev = le64_to_cpu(list->ssl_prev);
733 kunmap_atomic(kaddr);
735 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
739 ret = nilfs_cpfile_get_checkpoint_block(cpfile, next, 0,
748 ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
757 kaddr = kmap_atomic(next_bh->b_page);
758 list = nilfs_cpfile_block_get_snapshot_list(
759 cpfile, next, next_bh, kaddr);
760 list->ssl_prev = cpu_to_le64(prev);
761 kunmap_atomic(kaddr);
763 kaddr = kmap_atomic(prev_bh->b_page);
764 list = nilfs_cpfile_block_get_snapshot_list(
765 cpfile, prev, prev_bh, kaddr);
766 list->ssl_next = cpu_to_le64(next);
767 kunmap_atomic(kaddr);
769 kaddr = kmap_atomic(cp_bh->b_page);
770 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
771 cp->cp_snapshot_list.ssl_next = cpu_to_le64(0);
772 cp->cp_snapshot_list.ssl_prev = cpu_to_le64(0);
773 nilfs_checkpoint_clear_snapshot(cp);
774 kunmap_atomic(kaddr);
776 kaddr = kmap_atomic(header_bh->b_page);
777 header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
778 le64_add_cpu(&header->ch_nsnapshots, -1);
779 kunmap_atomic(kaddr);
781 mark_buffer_dirty(next_bh);
782 mark_buffer_dirty(prev_bh);
783 mark_buffer_dirty(cp_bh);
784 mark_buffer_dirty(header_bh);
785 nilfs_mdt_mark_dirty(cpfile);
799 up_write(&NILFS_MDT(cpfile)->mi_sem);
804 * nilfs_cpfile_is_snapshot -
805 * @cpfile: inode of checkpoint file
806 * @cno: checkpoint number
810 * Return Value: On success, 1 is returned if the checkpoint specified by
811 * @cno is a snapshot, or 0 if not. On error, one of the following negative
812 * error codes is returned.
816 * %-ENOMEM - Insufficient amount of memory available.
818 * %-ENOENT - No such checkpoint.
820 int nilfs_cpfile_is_snapshot(struct inode *cpfile, __u64 cno)
822 struct buffer_head *bh;
823 struct nilfs_checkpoint *cp;
827 /* CP number is invalid if it's zero or larger than the
829 if (cno == 0 || cno >= nilfs_mdt_cno(cpfile))
831 down_read(&NILFS_MDT(cpfile)->mi_sem);
833 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &bh);
836 kaddr = kmap_atomic(bh->b_page);
837 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
838 if (nilfs_checkpoint_invalid(cp))
841 ret = nilfs_checkpoint_snapshot(cp);
842 kunmap_atomic(kaddr);
846 up_read(&NILFS_MDT(cpfile)->mi_sem);
851 * nilfs_cpfile_change_cpmode - change checkpoint mode
852 * @cpfile: inode of checkpoint file
853 * @cno: checkpoint number
854 * @status: mode of checkpoint
856 * Description: nilfs_change_cpmode() changes the mode of the checkpoint
857 * specified by @cno. The mode @mode is NILFS_CHECKPOINT or NILFS_SNAPSHOT.
859 * Return Value: On success, 0 is returned. On error, one of the following
860 * negative error codes is returned.
864 * %-ENOMEM - Insufficient amount of memory available.
866 * %-ENOENT - No such checkpoint.
868 int nilfs_cpfile_change_cpmode(struct inode *cpfile, __u64 cno, int mode)
873 case NILFS_CHECKPOINT:
874 if (nilfs_checkpoint_is_mounted(cpfile->i_sb, cno))
876 * Current implementation does not have to protect
877 * plain read-only mounts since they are exclusive
878 * with a read/write mount and are protected from the
883 ret = nilfs_cpfile_clear_snapshot(cpfile, cno);
886 return nilfs_cpfile_set_snapshot(cpfile, cno);
893 * nilfs_cpfile_get_stat - get checkpoint statistics
894 * @cpfile: inode of checkpoint file
895 * @stat: pointer to a structure of checkpoint statistics
897 * Description: nilfs_cpfile_get_stat() returns information about checkpoints.
899 * Return Value: On success, 0 is returned, and checkpoints information is
900 * stored in the place pointed by @stat. On error, one of the following
901 * negative error codes is returned.
905 * %-ENOMEM - Insufficient amount of memory available.
907 int nilfs_cpfile_get_stat(struct inode *cpfile, struct nilfs_cpstat *cpstat)
909 struct buffer_head *bh;
910 struct nilfs_cpfile_header *header;
914 down_read(&NILFS_MDT(cpfile)->mi_sem);
916 ret = nilfs_cpfile_get_header_block(cpfile, &bh);
919 kaddr = kmap_atomic(bh->b_page);
920 header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
921 cpstat->cs_cno = nilfs_mdt_cno(cpfile);
922 cpstat->cs_ncps = le64_to_cpu(header->ch_ncheckpoints);
923 cpstat->cs_nsss = le64_to_cpu(header->ch_nsnapshots);
924 kunmap_atomic(kaddr);
928 up_read(&NILFS_MDT(cpfile)->mi_sem);
933 * nilfs_cpfile_read - read or get cpfile inode
934 * @sb: super block instance
935 * @cpsize: size of a checkpoint entry
936 * @raw_inode: on-disk cpfile inode
937 * @inodep: buffer to store the inode
939 int nilfs_cpfile_read(struct super_block *sb, size_t cpsize,
940 struct nilfs_inode *raw_inode, struct inode **inodep)
942 struct inode *cpfile;
945 cpfile = nilfs_iget_locked(sb, NULL, NILFS_CPFILE_INO);
946 if (unlikely(!cpfile))
948 if (!(cpfile->i_state & I_NEW))
951 err = nilfs_mdt_init(cpfile, NILFS_MDT_GFP, 0);
955 nilfs_mdt_set_entry_size(cpfile, cpsize,
956 sizeof(struct nilfs_cpfile_header));
958 err = nilfs_read_inode_common(cpfile, raw_inode);
962 unlock_new_inode(cpfile);