Linux cryptographic layer development
 help / color / mirror / Atom feed
* [cryptodev:master 147/175] DocBook: include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
@ 2016-07-18 12:25 kbuild test robot
  2016-07-18 16:59 ` Herbert Xu
  0 siblings, 1 reply; 2+ messages in thread
From: kbuild test robot @ 2016-07-18 12:25 UTC (permalink / raw)
  Cc: kbuild-all, linux-crypto, Herbert Xu

[-- Attachment #1: Type: text/plain, Size: 2964 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git master
head:   c6335cbb0486f09b4c2ae86e84bf87efd667afa6
commit: 4e6c3df4d729f85997cbf276bfa8ffd8579b8e77 [147/175] crypto: skcipher - Add low-level skcipher interface
reproduce: make htmldocs

All warnings (new ones prefixed by >>):

>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'
>> include/crypto/skcipher.h:135: warning: No description found for parameter 'base'

vim +/base +135 include/crypto/skcipher.h

   119	 * All fields except @ivsize are mandatory and must be filled.
   120	 */
   121	struct skcipher_alg {
   122		int (*setkey)(struct crypto_skcipher *tfm, const u8 *key,
   123		              unsigned int keylen);
   124		int (*encrypt)(struct skcipher_request *req);
   125		int (*decrypt)(struct skcipher_request *req);
   126		int (*init)(struct crypto_skcipher *tfm);
   127		void (*exit)(struct crypto_skcipher *tfm);
   128	
   129		unsigned int min_keysize;
   130		unsigned int max_keysize;
   131		unsigned int ivsize;
   132		unsigned int chunksize;
   133	
   134		struct crypto_alg base;
 > 135	};
   136	
   137	#define SKCIPHER_REQUEST_ON_STACK(name, tfm) \
   138		char __##name##_desc[sizeof(struct skcipher_request) + \
   139			crypto_skcipher_reqsize(tfm)] CRYPTO_MINALIGN_ATTR; \
   140		struct skcipher_request *name = (void *)__##name##_desc
   141	
   142	static inline struct crypto_ablkcipher *skcipher_givcrypt_reqtfm(
   143		struct skcipher_givcrypt_request *req)

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 6366 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-07-18 16:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-18 12:25 [cryptodev:master 147/175] DocBook: include/crypto/skcipher.h:135: warning: No description found for parameter 'base' kbuild test robot
2016-07-18 16:59 ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox