mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
1ea66d71b1
extRealloc(), xtRelocate(), xtDelete() and extFill() have been
removed since commit e471e5942c
("fs/jfs: Remove dead code"),
so remove them.
Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
17 lines
511 B
C
17 lines
511 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) International Business Machines Corp., 2000-2001
|
|
*/
|
|
#ifndef _H_JFS_EXTENT
|
|
#define _H_JFS_EXTENT
|
|
|
|
/* get block allocation hint as location of disk inode */
|
|
#define INOHINT(ip) \
|
|
(addressPXD(&(JFS_IP(ip)->ixpxd)) + lengthPXD(&(JFS_IP(ip)->ixpxd)) - 1)
|
|
|
|
extern int extAlloc(struct inode *, s64, s64, xad_t *, bool);
|
|
extern int extHint(struct inode *, s64, xad_t *);
|
|
extern int extRecord(struct inode *, xad_t *);
|
|
|
|
#endif /* _H_JFS_EXTENT */
|