/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=8:tabstop=8: * * This file is part of Lustre, http://www.lustre.org * * Data structures for object storage targets and client: OST & OSC's * * See also lustre_idl.h for wire formats of requests. */ #ifndef _LUSTRE_OST_H #define _LUSTRE_OST_H #include struct osc_brw_async_args { struct obdo *aa_oa; int aa_requested_nob; int aa_nio_count; obd_count aa_page_count; struct brw_page *aa_pga; struct client_obd *aa_cli; struct list_head aa_oaps; }; struct osc_getattr_async_args { struct obdo *aa_oa; }; #endif