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
20 * Written by Koji Sato <koji@osrg.net>.
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 nilfs_mdt_mark_buffer_dirty(cp_bh);
221 kaddr = kmap_atomic(header_bh->b_page, KM_USER0);
222 header = nilfs_cpfile_block_get_header(cpfile, header_bh,
224 le64_add_cpu(&header->ch_ncheckpoints, 1);
225 kunmap_atomic(kaddr, KM_USER0);
226 nilfs_mdt_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, 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 /* cannot delete the latest checkpoint */
299 if (start == nilfs_mdt_cno(cpfile) - 1)
302 down_write(&NILFS_MDT(cpfile)->mi_sem);
304 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
309 for (cno = start; cno < end; cno += ncps) {
310 ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, end);
311 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
320 kaddr = kmap_atomic(cp_bh->b_page, KM_USER0);
321 cp = nilfs_cpfile_block_get_checkpoint(
322 cpfile, cno, cp_bh, kaddr);
324 for (i = 0; i < ncps; i++, cp = (void *)cp + cpsz) {
325 WARN_ON(nilfs_checkpoint_snapshot(cp));
326 if (!nilfs_checkpoint_invalid(cp)) {
327 nilfs_checkpoint_set_invalid(cp);
333 nilfs_mdt_mark_buffer_dirty(cp_bh);
334 nilfs_mdt_mark_dirty(cpfile);
335 if (!nilfs_cpfile_is_in_first(cpfile, cno) &&
336 (count = nilfs_cpfile_block_sub_valid_checkpoints(
337 cpfile, cp_bh, kaddr, nicps)) == 0) {
339 kunmap_atomic(kaddr, KM_USER0);
341 ret = nilfs_cpfile_delete_checkpoint_block(
345 printk(KERN_ERR "%s: cannot delete block\n",
351 kunmap_atomic(kaddr, KM_USER0);
356 kaddr = kmap_atomic(header_bh->b_page, KM_USER0);
357 header = nilfs_cpfile_block_get_header(cpfile, header_bh,
359 le64_add_cpu(&header->ch_ncheckpoints, -(u64)tnicps);
360 nilfs_mdt_mark_buffer_dirty(header_bh);
361 nilfs_mdt_mark_dirty(cpfile);
362 kunmap_atomic(kaddr, KM_USER0);
369 up_write(&NILFS_MDT(cpfile)->mi_sem);
373 static void nilfs_cpfile_checkpoint_to_cpinfo(struct inode *cpfile,
374 struct nilfs_checkpoint *cp,
375 struct nilfs_cpinfo *ci)
377 ci->ci_flags = le32_to_cpu(cp->cp_flags);
378 ci->ci_cno = le64_to_cpu(cp->cp_cno);
379 ci->ci_create = le64_to_cpu(cp->cp_create);
380 ci->ci_nblk_inc = le64_to_cpu(cp->cp_nblk_inc);
381 ci->ci_inodes_count = le64_to_cpu(cp->cp_inodes_count);
382 ci->ci_blocks_count = le64_to_cpu(cp->cp_blocks_count);
383 ci->ci_next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
386 static ssize_t nilfs_cpfile_do_get_cpinfo(struct inode *cpfile, __u64 *cnop,
387 struct nilfs_cpinfo *ci, size_t nci)
389 struct nilfs_checkpoint *cp;
390 struct buffer_head *bh;
391 size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
392 __u64 cur_cno = nilfs_mdt_cno(cpfile), cno = *cnop;
398 return -ENOENT; /* checkpoint number 0 is invalid */
399 down_read(&NILFS_MDT(cpfile)->mi_sem);
401 for (n = 0; cno < cur_cno && n < nci; cno += ncps) {
402 ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, cur_cno);
403 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &bh);
407 continue; /* skip hole */
410 kaddr = kmap_atomic(bh->b_page, KM_USER0);
411 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
412 for (i = 0; i < ncps && n < nci; i++, cp = (void *)cp + cpsz) {
413 if (!nilfs_checkpoint_invalid(cp))
414 nilfs_cpfile_checkpoint_to_cpinfo(
415 cpfile, cp, &ci[n++]);
417 kunmap_atomic(kaddr, KM_USER0);
423 *cnop = ci[n - 1].ci_cno + 1;
426 up_read(&NILFS_MDT(cpfile)->mi_sem);
430 static ssize_t nilfs_cpfile_do_get_ssinfo(struct inode *cpfile, __u64 *cnop,
431 struct nilfs_cpinfo *ci, size_t nci)
433 struct buffer_head *bh;
434 struct nilfs_cpfile_header *header;
435 struct nilfs_checkpoint *cp;
436 __u64 curr = *cnop, next;
437 unsigned long curr_blkoff, next_blkoff;
441 down_read(&NILFS_MDT(cpfile)->mi_sem);
444 ret = nilfs_cpfile_get_header_block(cpfile, &bh);
447 kaddr = kmap_atomic(bh->b_page, KM_USER0);
448 header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
449 curr = le64_to_cpu(header->ch_snapshot_list.ssl_next);
450 kunmap_atomic(kaddr, KM_USER0);
456 } else if (unlikely(curr == ~(__u64)0)) {
461 curr_blkoff = nilfs_cpfile_get_blkoff(cpfile, curr);
462 ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr, 0, &bh);
463 if (unlikely(ret < 0)) {
465 ret = 0; /* No snapshots (started from a hole block) */
468 kaddr = kmap_atomic(bh->b_page, KM_USER0);
470 cp = nilfs_cpfile_block_get_checkpoint(cpfile, curr, bh, kaddr);
471 curr = ~(__u64)0; /* Terminator */
472 if (unlikely(nilfs_checkpoint_invalid(cp) ||
473 !nilfs_checkpoint_snapshot(cp)))
475 nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp, &ci[n++]);
476 next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
478 break; /* reach end of the snapshot list */
480 next_blkoff = nilfs_cpfile_get_blkoff(cpfile, next);
481 if (curr_blkoff != next_blkoff) {
482 kunmap_atomic(kaddr, KM_USER0);
484 ret = nilfs_cpfile_get_checkpoint_block(cpfile, next,
486 if (unlikely(ret < 0)) {
487 WARN_ON(ret == -ENOENT);
490 kaddr = kmap_atomic(bh->b_page, KM_USER0);
493 curr_blkoff = next_blkoff;
495 kunmap_atomic(kaddr, KM_USER0);
501 up_read(&NILFS_MDT(cpfile)->mi_sem);
506 * nilfs_cpfile_get_cpinfo -
513 ssize_t nilfs_cpfile_get_cpinfo(struct inode *cpfile, __u64 *cnop, int mode,
514 struct nilfs_cpinfo *ci, size_t nci)
517 case NILFS_CHECKPOINT:
518 return nilfs_cpfile_do_get_cpinfo(cpfile, cnop, ci, nci);
520 return nilfs_cpfile_do_get_ssinfo(cpfile, cnop, ci, nci);
527 * nilfs_cpfile_delete_checkpoint -
531 int nilfs_cpfile_delete_checkpoint(struct inode *cpfile, __u64 cno)
533 struct nilfs_cpinfo ci;
538 nci = nilfs_cpfile_do_get_cpinfo(cpfile, &tcno, &ci, 1);
541 else if (nci == 0 || ci.ci_cno != cno)
544 /* cannot delete the latest checkpoint nor snapshots */
545 ret = nilfs_cpinfo_snapshot(&ci);
548 else if (ret > 0 || cno == nilfs_mdt_cno(cpfile) - 1)
551 return nilfs_cpfile_delete_checkpoints(cpfile, cno, cno + 1);
554 static struct nilfs_snapshot_list *
555 nilfs_cpfile_block_get_snapshot_list(const struct inode *cpfile,
557 struct buffer_head *bh,
560 struct nilfs_cpfile_header *header;
561 struct nilfs_checkpoint *cp;
562 struct nilfs_snapshot_list *list;
565 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
566 list = &cp->cp_snapshot_list;
568 header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
569 list = &header->ch_snapshot_list;
574 static int nilfs_cpfile_set_snapshot(struct inode *cpfile, __u64 cno)
576 struct buffer_head *header_bh, *curr_bh, *prev_bh, *cp_bh;
577 struct nilfs_cpfile_header *header;
578 struct nilfs_checkpoint *cp;
579 struct nilfs_snapshot_list *list;
581 unsigned long curr_blkoff, prev_blkoff;
586 return -ENOENT; /* checkpoint number 0 is invalid */
587 down_write(&NILFS_MDT(cpfile)->mi_sem);
589 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
592 kaddr = kmap_atomic(cp_bh->b_page, KM_USER0);
593 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
594 if (nilfs_checkpoint_invalid(cp)) {
596 kunmap_atomic(kaddr, KM_USER0);
599 if (nilfs_checkpoint_snapshot(cp)) {
601 kunmap_atomic(kaddr, KM_USER0);
604 kunmap_atomic(kaddr, KM_USER0);
606 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
609 kaddr = kmap_atomic(header_bh->b_page, KM_USER0);
610 header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
611 list = &header->ch_snapshot_list;
616 prev = le64_to_cpu(list->ssl_prev);
618 prev_blkoff = nilfs_cpfile_get_blkoff(cpfile, prev);
620 if (curr_blkoff != prev_blkoff) {
621 kunmap_atomic(kaddr, KM_USER0);
623 ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr,
627 kaddr = kmap_atomic(curr_bh->b_page, KM_USER0);
629 curr_blkoff = prev_blkoff;
630 cp = nilfs_cpfile_block_get_checkpoint(
631 cpfile, curr, curr_bh, kaddr);
632 list = &cp->cp_snapshot_list;
633 prev = le64_to_cpu(list->ssl_prev);
635 kunmap_atomic(kaddr, KM_USER0);
638 ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
647 kaddr = kmap_atomic(curr_bh->b_page, KM_USER0);
648 list = nilfs_cpfile_block_get_snapshot_list(
649 cpfile, curr, curr_bh, kaddr);
650 list->ssl_prev = cpu_to_le64(cno);
651 kunmap_atomic(kaddr, KM_USER0);
653 kaddr = kmap_atomic(cp_bh->b_page, KM_USER0);
654 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
655 cp->cp_snapshot_list.ssl_next = cpu_to_le64(curr);
656 cp->cp_snapshot_list.ssl_prev = cpu_to_le64(prev);
657 nilfs_checkpoint_set_snapshot(cp);
658 kunmap_atomic(kaddr, KM_USER0);
660 kaddr = kmap_atomic(prev_bh->b_page, KM_USER0);
661 list = nilfs_cpfile_block_get_snapshot_list(
662 cpfile, prev, prev_bh, kaddr);
663 list->ssl_next = cpu_to_le64(cno);
664 kunmap_atomic(kaddr, KM_USER0);
666 kaddr = kmap_atomic(header_bh->b_page, KM_USER0);
667 header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
668 le64_add_cpu(&header->ch_nsnapshots, 1);
669 kunmap_atomic(kaddr, KM_USER0);
671 nilfs_mdt_mark_buffer_dirty(prev_bh);
672 nilfs_mdt_mark_buffer_dirty(curr_bh);
673 nilfs_mdt_mark_buffer_dirty(cp_bh);
674 nilfs_mdt_mark_buffer_dirty(header_bh);
675 nilfs_mdt_mark_dirty(cpfile);
689 up_write(&NILFS_MDT(cpfile)->mi_sem);
693 static int nilfs_cpfile_clear_snapshot(struct inode *cpfile, __u64 cno)
695 struct buffer_head *header_bh, *next_bh, *prev_bh, *cp_bh;
696 struct nilfs_cpfile_header *header;
697 struct nilfs_checkpoint *cp;
698 struct nilfs_snapshot_list *list;
704 return -ENOENT; /* checkpoint number 0 is invalid */
705 down_write(&NILFS_MDT(cpfile)->mi_sem);
707 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
710 kaddr = kmap_atomic(cp_bh->b_page, KM_USER0);
711 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
712 if (nilfs_checkpoint_invalid(cp)) {
714 kunmap_atomic(kaddr, KM_USER0);
717 if (!nilfs_checkpoint_snapshot(cp)) {
719 kunmap_atomic(kaddr, KM_USER0);
723 list = &cp->cp_snapshot_list;
724 next = le64_to_cpu(list->ssl_next);
725 prev = le64_to_cpu(list->ssl_prev);
726 kunmap_atomic(kaddr, KM_USER0);
728 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
732 ret = nilfs_cpfile_get_checkpoint_block(cpfile, next, 0,
741 ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
750 kaddr = kmap_atomic(next_bh->b_page, KM_USER0);
751 list = nilfs_cpfile_block_get_snapshot_list(
752 cpfile, next, next_bh, kaddr);
753 list->ssl_prev = cpu_to_le64(prev);
754 kunmap_atomic(kaddr, KM_USER0);
756 kaddr = kmap_atomic(prev_bh->b_page, KM_USER0);
757 list = nilfs_cpfile_block_get_snapshot_list(
758 cpfile, prev, prev_bh, kaddr);
759 list->ssl_next = cpu_to_le64(next);
760 kunmap_atomic(kaddr, KM_USER0);
762 kaddr = kmap_atomic(cp_bh->b_page, KM_USER0);
763 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
764 cp->cp_snapshot_list.ssl_next = cpu_to_le64(0);
765 cp->cp_snapshot_list.ssl_prev = cpu_to_le64(0);
766 nilfs_checkpoint_clear_snapshot(cp);
767 kunmap_atomic(kaddr, KM_USER0);
769 kaddr = kmap_atomic(header_bh->b_page, KM_USER0);
770 header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
771 le64_add_cpu(&header->ch_nsnapshots, -1);
772 kunmap_atomic(kaddr, KM_USER0);
774 nilfs_mdt_mark_buffer_dirty(next_bh);
775 nilfs_mdt_mark_buffer_dirty(prev_bh);
776 nilfs_mdt_mark_buffer_dirty(cp_bh);
777 nilfs_mdt_mark_buffer_dirty(header_bh);
778 nilfs_mdt_mark_dirty(cpfile);
792 up_write(&NILFS_MDT(cpfile)->mi_sem);
797 * nilfs_cpfile_is_snapshot -
798 * @cpfile: inode of checkpoint file
799 * @cno: checkpoint number
803 * Return Value: On success, 1 is returned if the checkpoint specified by
804 * @cno is a snapshot, or 0 if not. On error, one of the following negative
805 * error codes is returned.
809 * %-ENOMEM - Insufficient amount of memory available.
811 * %-ENOENT - No such checkpoint.
813 int nilfs_cpfile_is_snapshot(struct inode *cpfile, __u64 cno)
815 struct buffer_head *bh;
816 struct nilfs_checkpoint *cp;
821 return -ENOENT; /* checkpoint number 0 is invalid */
822 down_read(&NILFS_MDT(cpfile)->mi_sem);
824 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &bh);
827 kaddr = kmap_atomic(bh->b_page, KM_USER0);
828 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
829 ret = nilfs_checkpoint_snapshot(cp);
830 kunmap_atomic(kaddr, KM_USER0);
834 up_read(&NILFS_MDT(cpfile)->mi_sem);
839 * nilfs_cpfile_change_cpmode - change checkpoint mode
840 * @cpfile: inode of checkpoint file
841 * @cno: checkpoint number
842 * @status: mode of checkpoint
844 * Description: nilfs_change_cpmode() changes the mode of the checkpoint
845 * specified by @cno. The mode @mode is NILFS_CHECKPOINT or NILFS_SNAPSHOT.
847 * Return Value: On success, 0 is returned. On error, one of the following
848 * negative error codes is returned.
852 * %-ENOMEM - Insufficient amount of memory available.
854 * %-ENOENT - No such checkpoint.
856 int nilfs_cpfile_change_cpmode(struct inode *cpfile, __u64 cno, int mode)
858 struct the_nilfs *nilfs;
861 nilfs = NILFS_MDT(cpfile)->mi_nilfs;
864 case NILFS_CHECKPOINT:
866 * Check for protecting existing snapshot mounts:
867 * ns_mount_mutex is used to make this operation atomic and
868 * exclusive with a new mount job. Though it doesn't cover
869 * umount, it's enough for the purpose.
871 mutex_lock(&nilfs->ns_mount_mutex);
872 if (nilfs_checkpoint_is_mounted(nilfs, cno, 1)) {
873 /* Current implementation does not have to protect
874 plain read-only mounts since they are exclusive
875 with a read/write mount and are protected from the
879 ret = nilfs_cpfile_clear_snapshot(cpfile, cno);
880 mutex_unlock(&nilfs->ns_mount_mutex);
883 return nilfs_cpfile_set_snapshot(cpfile, cno);
890 * nilfs_cpfile_get_stat - get checkpoint statistics
891 * @cpfile: inode of checkpoint file
892 * @stat: pointer to a structure of checkpoint statistics
894 * Description: nilfs_cpfile_get_stat() returns information about checkpoints.
896 * Return Value: On success, 0 is returned, and checkpoints information is
897 * stored in the place pointed by @stat. On error, one of the following
898 * negative error codes is returned.
902 * %-ENOMEM - Insufficient amount of memory available.
904 int nilfs_cpfile_get_stat(struct inode *cpfile, struct nilfs_cpstat *cpstat)
906 struct buffer_head *bh;
907 struct nilfs_cpfile_header *header;
911 down_read(&NILFS_MDT(cpfile)->mi_sem);
913 ret = nilfs_cpfile_get_header_block(cpfile, &bh);
916 kaddr = kmap_atomic(bh->b_page, KM_USER0);
917 header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
918 cpstat->cs_cno = nilfs_mdt_cno(cpfile);
919 cpstat->cs_ncps = le64_to_cpu(header->ch_ncheckpoints);
920 cpstat->cs_nsss = le64_to_cpu(header->ch_nsnapshots);
921 kunmap_atomic(kaddr, KM_USER0);
925 up_read(&NILFS_MDT(cpfile)->mi_sem);