~ubuntu-branches/ubuntu/trusty/linux-ti-omap/trusty

« back to all changes in this revision

Viewing changes to ubuntu/iscsitarget/digest.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Bader, Amit Kucheria
  • Date: 2010-03-23 18:05:12 UTC
  • Revision ID: james.westby@ubuntu.com-20100323180512-iavj906ocnphdubp
Tags: 2.6.33-500.3
[ Amit Kucheria ]

* [Config] Fix the debug package name to end in -dbgsym
* SAUCE: Add the ubuntu/ drivers to omap
* SAUCE: Re-export the symbols for aufs
* [Config] Enable AUFS and COMPCACHE

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * iSCSI digest handling.
 
3
 * (C) 2004 Xiranet Communications GmbH <arne.redlich@xiranet.com>
 
4
 * This code is licensed under the GPL.
 
5
 */
 
6
 
 
7
#ifndef __IET_DIGEST_H__
 
8
#define __IET_DIGEST_H__
 
9
 
 
10
extern void digest_alg_available(unsigned int *val);
 
11
extern int digest_init(struct iscsi_conn *conn);
 
12
extern void digest_cleanup(struct iscsi_conn *conn);
 
13
 
 
14
extern int digest_rx_header(struct iscsi_cmnd *cmnd);
 
15
extern int digest_rx_data(struct iscsi_cmnd *cmnd);
 
16
 
 
17
extern void digest_tx_header(struct iscsi_cmnd *cmnd);
 
18
extern void digest_tx_data(struct iscsi_cmnd *cmnd);
 
19
 
 
20
#endif /* __IET_DIGEST_H__ */