super.c (c58310bf4933986513020fa90b4190c7492995ae) super.c (8e8a4603b5422c9145880e73b23bc4c2c4de0098)
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * super.c
5 *
6 * load/unload driver, mount/dismount volumes
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.

--- 1710 unchanged lines hidden (view full) ---

1719 * initialized resources and fileobject.
1720 */
1721static void ocfs2_delete_osb(struct ocfs2_super *osb)
1722{
1723 mlog_entry_void();
1724
1725 /* This function assumes that the caller has the main osb resource */
1726
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * super.c
5 *
6 * load/unload driver, mount/dismount volumes
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.

--- 1710 unchanged lines hidden (view full) ---

1719 * initialized resources and fileobject.
1720 */
1721static void ocfs2_delete_osb(struct ocfs2_super *osb)
1722{
1723 mlog_entry_void();
1724
1725 /* This function assumes that the caller has the main osb resource */
1726
1727 if (osb->slot_info)
1728 ocfs2_free_slot_info(osb->slot_info);
1727 ocfs2_free_slot_info(osb);
1729
1730 kfree(osb->osb_orphan_wipes);
1731 /* FIXME
1732 * This belongs in journal shutdown, but because we have to
1733 * allocate osb->journal at the start of ocfs2_initalize_osb(),
1734 * we free it here.
1735 */
1736 kfree(osb->journal);

--- 86 unchanged lines hidden ---
1728
1729 kfree(osb->osb_orphan_wipes);
1730 /* FIXME
1731 * This belongs in journal shutdown, but because we have to
1732 * allocate osb->journal at the start of ocfs2_initalize_osb(),
1733 * we free it here.
1734 */
1735 kfree(osb->journal);

--- 86 unchanged lines hidden ---