xfs_symlink.c (239880ef6454ccff2ba8d762c3f86e8278f0ce1c) | xfs_symlink.c (a4fbe6ab1e7abecf42b75e9c73701ed33b4ab03b) |
---|---|
1/* 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc. 3 * Copyright (c) 2012-2013 Red Hat, Inc. 4 * All rights reserved. 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License as 8 * published by the Free Software Foundation. --- 14 unchanged lines hidden (view full) --- 23#include "xfs_log_format.h" 24#include "xfs_trans_resv.h" 25#include "xfs_bit.h" 26#include "xfs_sb.h" 27#include "xfs_ag.h" 28#include "xfs_mount.h" 29#include "xfs_da_format.h" 30#include "xfs_dir2.h" | 1/* 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc. 3 * Copyright (c) 2012-2013 Red Hat, Inc. 4 * All rights reserved. 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License as 8 * published by the Free Software Foundation. --- 14 unchanged lines hidden (view full) --- 23#include "xfs_log_format.h" 24#include "xfs_trans_resv.h" 25#include "xfs_bit.h" 26#include "xfs_sb.h" 27#include "xfs_ag.h" 28#include "xfs_mount.h" 29#include "xfs_da_format.h" 30#include "xfs_dir2.h" |
31#include "xfs_bmap_btree.h" 32#include "xfs_ialloc_btree.h" 33#include "xfs_dinode.h" | |
34#include "xfs_inode.h" 35#include "xfs_ialloc.h" 36#include "xfs_alloc.h" 37#include "xfs_bmap.h" | 31#include "xfs_inode.h" 32#include "xfs_ialloc.h" 33#include "xfs_alloc.h" 34#include "xfs_bmap.h" |
35#include "xfs_bmap_btree.h" |
|
38#include "xfs_bmap_util.h" 39#include "xfs_error.h" 40#include "xfs_quota.h" 41#include "xfs_trans_space.h" 42#include "xfs_trace.h" 43#include "xfs_symlink.h" 44#include "xfs_trans.h" | 36#include "xfs_bmap_util.h" 37#include "xfs_error.h" 38#include "xfs_quota.h" 39#include "xfs_trans_space.h" 40#include "xfs_trace.h" 41#include "xfs_symlink.h" 42#include "xfs_trans.h" |
45#include "xfs_buf_item.h" | |
46#include "xfs_log.h" | 43#include "xfs_log.h" |
44#include "xfs_dinode.h" |
|
47 48/* ----- Kernel only functions below ----- */ 49STATIC int 50xfs_readlink_bmap( 51 struct xfs_inode *ip, 52 char *link) 53{ 54 struct xfs_mount *mp = ip->i_mount; --- 545 unchanged lines hidden --- | 45 46/* ----- Kernel only functions below ----- */ 47STATIC int 48xfs_readlink_bmap( 49 struct xfs_inode *ip, 50 char *link) 51{ 52 struct xfs_mount *mp = ip->i_mount; --- 545 unchanged lines hidden --- |