mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +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>
16 lines
511 B
C
16 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 */
|