summaryrefslogtreecommitdiff
path: root/.zshrc
blob: 5e22f82899f4e66f83f74afd285060c3b8055ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# .zshrc
#
# Base zshrc file which simply delegates to files in $ZDOTDIR
#
# Copyright © 2010–2011 Tobias Klauser <tklauser@distanz.ch>
#
# Source repository: git://git.distanz.ch/dotfiles/zsh.git
#
# Based on the zsh setup by martin f. krafft which can be found at:
# git://git.madduck.net/etc/zsh.git

ZDOTDIR=$HOME/.zsh
[ -f $ZDOTDIR/.zshrc ] && . $ZDOTDIR/.zshrc
>
authorIlya Dryomov <idryomov@gmail.com>2016-04-27 14:15:51 +0200
committerIlya Dryomov <idryomov@gmail.com>2016-05-26 00:36:21 +0200
commit13d1ad16d05eebb4db977eb955716b9da2c19fbd (patch)
treed48af8a4ae4ce0cc9407b7c72376dc518fbceea3
parent841272825b2263174120ab02b4abac9005ee1420 (diff)
libceph: move message allocation out of ceph_osdc_alloc_request()
The size of ->r_request and ->r_reply messages depends on the size of the object name (ceph_object_id), while the size of ceph_osd_request is fixed. Move message allocation into a separate function that would have to be called after ceph_object_id and ceph_object_locator (which is also going to become variable in size with RADOS namespaces) have been filled in: req = ceph_osdc_alloc_request(...); <fill in req->r_base_oid> <fill in req->r_base_oloc> ceph_osdc_alloc_messages(req); Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat