mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
aa7f243f32
In preparation for adding dynamic inode allocation, separate an inode zone information from the zonefs inode structure. The new data structure zonefs_zone is introduced to store in memory information about a zone that must be kept throughout the lifetime of the device mount. Linking between a zone file inode and its zone information is done by setting the inode i_private field to point to a struct zonefs_zone. Using the i_private pointer avoids the need for adding a pointer in struct zonefs_inode_info. Beside the vfs inode, this structure is reduced to a mutex and a write open counter. One struct zonefs_zone is created per file inode on mount. These structures are organized in an array using the new struct zonefs_zone_group data structure to represent zone groups. The zonefs_zone arrays are indexed per file number (the index of a struct zonefs_zone in its array directly gives the file number/name for that zone file inode). Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com> Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
107 lines
3.0 KiB
C
107 lines
3.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* zonefs filesystem driver tracepoints.
|
|
*
|
|
* Copyright (C) 2021 Western Digital Corporation or its affiliates.
|
|
*/
|
|
|
|
#undef TRACE_SYSTEM
|
|
#define TRACE_SYSTEM zonefs
|
|
|
|
#if !defined(_TRACE_ZONEFS_H) || defined(TRACE_HEADER_MULTI_READ)
|
|
#define _TRACE_ZONEFS_H
|
|
|
|
#include <linux/tracepoint.h>
|
|
#include <linux/trace_seq.h>
|
|
#include <linux/blkdev.h>
|
|
|
|
#include "zonefs.h"
|
|
|
|
#define show_dev(dev) MAJOR(dev), MINOR(dev)
|
|
|
|
TRACE_EVENT(zonefs_zone_mgmt,
|
|
TP_PROTO(struct super_block *sb, struct zonefs_zone *z,
|
|
enum req_op op),
|
|
TP_ARGS(sb, z, op),
|
|
TP_STRUCT__entry(
|
|
__field(dev_t, dev)
|
|
__field(ino_t, ino)
|
|
__field(enum req_op, op)
|
|
__field(sector_t, sector)
|
|
__field(sector_t, nr_sectors)
|
|
),
|
|
TP_fast_assign(
|
|
__entry->dev = sb->s_dev;
|
|
__entry->ino =
|
|
z->z_sector >> ZONEFS_SB(sb)->s_zone_sectors_shift;
|
|
__entry->op = op;
|
|
__entry->sector = z->z_sector;
|
|
__entry->nr_sectors = z->z_size >> SECTOR_SHIFT;
|
|
),
|
|
TP_printk("bdev=(%d,%d), ino=%lu op=%s, sector=%llu, nr_sectors=%llu",
|
|
show_dev(__entry->dev), (unsigned long)__entry->ino,
|
|
blk_op_str(__entry->op), __entry->sector,
|
|
__entry->nr_sectors
|
|
)
|
|
);
|
|
|
|
TRACE_EVENT(zonefs_file_dio_append,
|
|
TP_PROTO(struct inode *inode, ssize_t size, ssize_t ret),
|
|
TP_ARGS(inode, size, ret),
|
|
TP_STRUCT__entry(
|
|
__field(dev_t, dev)
|
|
__field(ino_t, ino)
|
|
__field(sector_t, sector)
|
|
__field(ssize_t, size)
|
|
__field(loff_t, wpoffset)
|
|
__field(ssize_t, ret)
|
|
),
|
|
TP_fast_assign(
|
|
__entry->dev = inode->i_sb->s_dev;
|
|
__entry->ino = inode->i_ino;
|
|
__entry->sector = zonefs_inode_zone(inode)->z_sector;
|
|
__entry->size = size;
|
|
__entry->wpoffset =
|
|
zonefs_inode_zone(inode)->z_wpoffset;
|
|
__entry->ret = ret;
|
|
),
|
|
TP_printk("bdev=(%d, %d), ino=%lu, sector=%llu, size=%zu, wpoffset=%llu, ret=%zu",
|
|
show_dev(__entry->dev), (unsigned long)__entry->ino,
|
|
__entry->sector, __entry->size, __entry->wpoffset,
|
|
__entry->ret
|
|
)
|
|
);
|
|
|
|
TRACE_EVENT(zonefs_iomap_begin,
|
|
TP_PROTO(struct inode *inode, struct iomap *iomap),
|
|
TP_ARGS(inode, iomap),
|
|
TP_STRUCT__entry(
|
|
__field(dev_t, dev)
|
|
__field(ino_t, ino)
|
|
__field(u64, addr)
|
|
__field(loff_t, offset)
|
|
__field(u64, length)
|
|
),
|
|
TP_fast_assign(
|
|
__entry->dev = inode->i_sb->s_dev;
|
|
__entry->ino = inode->i_ino;
|
|
__entry->addr = iomap->addr;
|
|
__entry->offset = iomap->offset;
|
|
__entry->length = iomap->length;
|
|
),
|
|
TP_printk("bdev=(%d,%d), ino=%lu, addr=%llu, offset=%llu, length=%llu",
|
|
show_dev(__entry->dev), (unsigned long)__entry->ino,
|
|
__entry->addr, __entry->offset, __entry->length
|
|
)
|
|
);
|
|
|
|
#endif /* _TRACE_ZONEFS_H */
|
|
|
|
#undef TRACE_INCLUDE_PATH
|
|
#define TRACE_INCLUDE_PATH .
|
|
#undef TRACE_INCLUDE_FILE
|
|
#define TRACE_INCLUDE_FILE trace
|
|
|
|
/* This part must be outside protection */
|
|
#include <trace/define_trace.h>
|